znq
znq

Reputation: 44973

AppEngine: Reading values/settings from app.yaml

Is it possible to read settings in Python from my app.yaml configuration file?

Upvotes: 4

Views: 756

Answers (1)

Wooble
Wooble

Reputation: 89897

No; app.yaml isn't uploaded to your application directory by default. You could symlink to it with a different filename in the project directory and then read from there if it's really necessary. What settings are you trying to access?

Upvotes: 6

Related Questions