Als «pyyaml» getaggte Fragen

10
Wie installiere ich das yaml-Paket für Python?
Ich habe ein Python-Programm, das YAML verwendet. Ich habe versucht, es mit auf einem neuen Server zu installieren, pip install yamlund es wird Folgendes zurückgegeben: $ sudo pip install yaml Downloading/unpacking yaml Could not find any downloads that satisfy the requirement yaml No distributions at all found for yaml Storing …
346 python  python-2.7  yaml  pip  pyyaml 



5
pyyaml: Dumping ohne Tags
ich habe >>> import yaml >>> yaml.dump(u'abc') "!!python/unicode 'abc'\n" Aber ich möchte >>> import yaml >>> yaml.dump(u'abc', magic='something') 'abc\n' Welcher magische Parameter erzwingt kein Markieren?
71 python  yaml  pyyaml 
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.