Receiving Email with App Engine
You can handle emails that have been send to “whatever@app-id.appspotmail.com” in your Python code. Here’s how: 1. Edit your app.yaml file You need to update two sections here: inbound_services: - mail...
View ArticleAnalyzing Google App Engine logs with AWStats
Most of the time, you can easily find the most CPU-intensive pages on your Google App Engine website by looking at the Current Load info on your application dashboard, but no specific bandwidth...
View ArticleExperiences with fivesecondtest.com
I recently created some test on fivesecondtest.com. The site shows its users a screenshot for 5 seconds and you can then ask them questions about it. Just take a look by doing a random test now. The 5...
View ArticleSome useful Python built-in functions
You can read the complete list in the Python documentation. You can use this Interactive Shell to try the functions online. enumerate This function is helpful when you would use an approach like...
View Article