[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-09-30 Thread chetan
ya good topic

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/1MTnfMmu6boJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-02 Thread Greg
For those who need to install later versions of python than your
distribution allows, I've written a post about how to do this without
affecting the system python. It's here:

http://neogregious.blogspot.com/2011/04/installing-multiple-versions-of-python.html

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-05 Thread Ben Welsh
I'd like to take this opportunity to +1 Python2.7 support. It's the default 
distribution in my development OS (Ubuntu) and it's pain to use 2.5, 
especially getting PIL to play nice. Besides my own little complaints, I 
think the SSL module is built into newer versions so you'd have fewer people 
hitting your API without it activated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-06 Thread Kaan Soral
Well I am also used to work the way you do, an IDE uploading files on
save.

The Development/Production difference requires twice the effort.

Pros:
- Safety from instant bugs (not a big pro)
- Safety from crucial bugs (like deleting everything by mistake, I
once did it with a PHP App, had no backups, fortunately I learned that
Win7 Takes backups =)

Cons:
- Copying and managing data is really really hard
- Deployment takes a lot of time

I think with small changes, such a dynamic working environment can be
achieved.
For example I searched for a way to use Appengine Datastore instead of
a local one for everything but couldn't find one, that would be good.
It would also be good to easily manage indexes, without having to use
tricks such as upload to a different version etc etc

It's a bit out of the initial topic but these were on my mind

On Mar 31, 8:11 pm, "Brandon Wirtz"  wrote:
> Do people use Developer tools?  I work in Notepad++ and only have python on
> my machine because I need it to run appcfg.py.  Has GOOG considered a Upload
> and run option? Something where I could basically run the way I do my PHP
> servers of push changed files to the server via FTP (or ftp like software).
>
> From: google-appengine@googlegroups.com
> [mailto:google-appengine@googlegroups.com] On Behalf Of Wesley C (Google)
> Sent: Thursday, March 31, 2011 9:15 AM
> To: google-appengine@googlegroups.com
> Subject: [google-appengine] Announcement: Deprecating Python 2.4 support
> (App Engine 1.4.3 SDK final release to support it)
>
> Greetings Python Developers!
>
> We released version 1.4.3 of the App Engine SDK yesterday. In addition to a
> number of great features for Python developers, it is also important because
> it represents the last version of the SDK that will be compatible with
> Python 2.4.  Going forward, we will require you to use at least Python 2.5
> to match the version of Python that runs in the production environment.
> Moving to Python 2.5 will also allow us to make a number of changes to make
> the developer tools easier to use and maintain.
>
> For developers currently using Python 2.4, we strongly recommend you upgrade
> to Python 2.5 as soon as possible.  However, for those of you without the
> ability to upgrade (grumpy sysadmins, etc), you can continue to use version
> 1.4.3 of the App Engine SDK going forward.  However, you will not be able to
> take advantage of new features of the App Engine platform as they are
> released.
>
> We apologies for the inconvenience (on the bright side, you have an excuse
> to play with the new features of 2.5)! Another piece of good news is that
> work has begun on the next Python run API to support 2.7! You'll also find
> this and other forthcoming features on our product roadmap 
> at:http://code.google.com/appengine/docs/roadmap.html
>
> Best regards,
> - the Google App Engine team
>
> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
> "Core Python Programming", Prentice Hall, (c)2007,2001
> "Python Fundamentals", Prentice Hall, (c)2009
>    http://corepython.com
>
> wesley.j.chun :: wesc+api at google.com :: @wescpy
> developer relations :: google cloud products
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-06 Thread PK
Ben,

even when GAE provides 2.7 support pretty soon the next version of
Ubuntu will ship with the next version of python as the default. The
best is to be in control of the python interpreter you use for
development and change it in your own timeframe, not because you
upgraded the OS and came with a new default interpreter. This is what
I do both for my Ubuntu and Mac development environment. I summarized
the steps for Ubuntu here:

http://www.gae123.com/articles/dpwf/apb.html

PK
www.gae123.com

On Apr 5, 5:48 pm, Ben Welsh  wrote:
> I'd like to take this opportunity to +1 Python2.7 support. It's the default
> distribution in my development OS (Ubuntu) and it's pain to use 2.5,
> especially getting PIL to play nice. Besides my own little complaints, I
> think the SSL module is built into newer versions so you'd have fewer people
> hitting your API without it activated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-06 Thread Sudhir
I'm didn't know that 2.4 was supported in the first place :-/

Hope this heralds the release of 2.7 support...

Sudhir

On Apr 7, 3:31 am, PK  wrote:
> Ben,
>
> even when GAE provides 2.7 support pretty soon the next version of
> Ubuntu will ship with the next version of python as the default. The
> best is to be in control of the python interpreter you use for
> development and change it in your own timeframe, not because you
> upgraded the OS and came with a new default interpreter. This is what
> I do both for my Ubuntu and Mac development environment. I summarized
> the steps for Ubuntu here:
>
> http://www.gae123.com/articles/dpwf/apb.html
>
> PKwww.gae123.com
>
> On Apr 5, 5:48 pm, Ben Welsh  wrote:
>
>
>
>
>
>
>
> > I'd like to take this opportunity to +1 Python2.7 support. It's the default
> > distribution in my development OS (Ubuntu) and it's pain to use 2.5,
> > especially getting PIL to play nice. Besides my own little complaints, I
> > think the SSL module is built into newer versions so you'd have fewer people
> > hitting your API without it activated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.