Als «pyyaml» getaggte Fragen

346
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...

71
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?