Re: [Tutor] Python books

2012-11-09 Thread wesley chun
there is no one single book that has all you're seeking, however you can probably find one or two that may suit your fancy in these Python reading lists that i made earlier this year: http://goo.gl/i4u0R note that the 3rd set of books are some of the references that you're seeking. best of luck!

Re: [Tutor] encrypt a file in Python3

2012-11-09 Thread Mark Lawrence
On 10/11/2012 05:54, ke...@kendy.org wrote: Hello! I want to encrypt a file, then decrypt it. I prefer to do it without adding any packages. I found http://eli.thegreenplace.net/2010/06/25/aes-encryption-of-files-in-python-with-pycrypto/ which seems like a good approach. How can I get the impo

[Tutor] encrypt a file in Python3

2012-11-09 Thread kendy
Hello! I want to encrypt a file, then decrypt it. I prefer to do it without adding any packages. I found http://eli.thegreenplace.net/2010/06/25/aes-encryption-of-files-in-python-with-pycrypto/ which seems like a good approach. How can I get the import to work for python 3? Here's what I get:

[Tutor] Python books

2012-11-09 Thread Ed Owens
I've been trying to learn Python, writing a Blackjack program. Seems that's a common problem for learning. I'm not in a class or school, just working on my own. I've been working in Python 2.7, and considering moving up to 3.x. My programming background is ancient, having done most of my pro

Re: [Tutor] Get data through url.

2012-11-09 Thread Alan Gauld
On 09/11/12 18:57, Mohammed hisamuddin wrote: For instance i want to call http://http://yourserver.com/>>/expand.py?mobile=992828282®ion=India and i get the "mobile" and "region" values inside my program which i can then save into my db. lots of options but you could start with the standard

[Tutor] Get data through url.

2012-11-09 Thread Mohammed hisamuddin
I want to pass data onto my python program through an url and then store the information in a mysql db. For instance i want to call http:///expand.py?mobile=992828282®ion=India and i get the "mobile" and "region" values inside my program which i can then save into my db. In php i could use $_get