python - Use app engine yaml parser in scripts -
i have configuration files want write in yaml , read in python script running on google app engine. given app engine uses app.yaml, index.yaml among others seems reasonable assume there python yaml parser available.
- how can gain access parser (what import) , can find documentation.
- i'd use parser scripts running outside of agg engine (build scripts , such) how can gain access same import script run command line?
the yaml library included appengine sdk. located in google_appengine/lib/yaml. should able use in appengine code having import yaml
in code.
for non-appengine work, quick google search reveals http://pyyaml.org/ home many , various python implementations.
Comments
Post a Comment