Reputation: 44973
Is it possible to read settings in Python from my app.yaml configuration file?
Upvotes: 4
Views: 756
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