Re: [google-appengine] Google Cloud Platform - Account cancelled.

2014-01-08 Thread Stefano Ciccarelli
I've received the same email a few hours ago and I don't know why! Il giorno giovedì 9 gennaio 2014, Tapir ha scritto: > This the title of the email I just received from > billing-nore...@google.com 'billing-nore...@google.com');> > > The content is: > > You've successfully canc

[google-appengine] Google Cloud Platform - Account cancelled.

2014-01-08 Thread Tapir
This the title of the email I just received from billing-nore...@google.com The content is: You've successfully cancelled your Google Cloud Platform account. Note: because it can take several days for any remaining ad costs to affect your balance, you might be charged one more

[google-appengine] Re: App engine examples and documentation suck -Don't waste your time

2014-01-08 Thread joe . shevland
The latest one killing me is the Google Cloud Storage client API. You can write to a file (write only, not append), but there is no API to list or search the files in your bucket. I don't understand how an API to store data ala a file system approach would be produced without that. Really don't

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread Adrian
Okay... I can load cron.yaml now... turns out if I launch my dev_server from the folder that the app is in, it doesn't load pytz property, but if I load dev_server from my home directory and just address my yaml files via [myappname]/app.yaml and [myappname]/loadandprocess.yaml it works.. not s

[google-appengine] Can not deploy to server

2014-01-08 Thread Toan M. Ha
Good afternoon, GAE make me crazy today, I can not deploy the last version of source code It is the error log: 09:03 PM Application: codetnd; version: 1 09:03 PM Host: appengine.google.com 09:03 PM Starting update of app: codetnd, version: 1 09:03 PM Getting current resource limits. 09:03 PM Sc

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread Adrian
Hey Alex, Thanks for the reply -- it's very strange.. pytz is installed as I can import it, but I can't load America/New_York... I just tried uninstalling and reinstalling pytz and that didn't work either.. $ python -c "import pytz; print pytz.timezone('America/New_York')" Traceback (most rec

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread alex
> If it doesn't, something's wrong with pytz. Note that it's not included in App Engine SDK. Usually it's installed as a system package. Anyway, if there's no such package as "pytz" you could try installing it by running "sudo pip install pytz" or "sudo easy_install pytz". On 8 January 2014 15:3

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread alex
Are you sure you have pytz installed on your system? Try this from cmd line: python -c "import pytz; print pytz.timezone('America/New_York')" Should print out "America/New_York". If it doesn't, something's wrong with pytz. Note that it's not included in App Engine SDK. Usually it's installed as a

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread Adrian
This is the part of the cron.yaml file it is getting upset with (line 5): cron: - description: call frontend instance to call a module to download data url: /callLoadAndProcess schedule: every day 01:00 timezone: America/New_York On Wednesday, January 8, 2014 9:08:50 AM UTC-5, Adrian wrote

Re: [google-appengine] Can't get a module to start via a cron job

2014-01-08 Thread Adrian
Hey Alex, Thanks for the reply -- when I load in all of my modules (app.yaml and loadandprocess.yaml), I now have this error when I go to the cron tab on the devserver admin page: Error loading cron.yaml: Traceback (most recent call last): File "/home/adrian/google_appengine/google/appengi