[Tutor] I need a good resource for python Django

2013-08-17 Thread Arun Kumar
Hi, Can anyone suggest me a good resource for python Django. I've gone through the official website of Django but it is of limited use to me. Any help on this would be highly appreciated. Regards, Arun Kumar http://clicknscroll.blogspot.com ___

Re: [Tutor] Tutor Digest, Vol 95, Issue 80

2012-01-30 Thread Arun Kumar
gt; An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/tutor/attachments/20120130/fec2e0a2/attachment-0001.html > > > > -- > > Message: 7 > Date: Mon, 30 Jan 2012 00:51:58 -0600 > From: Chris Fuller > To: tutor@python.org > Subject: Re: [Tutor] Help Glade Tutorial. > Message-ID: <20120

[Tutor] splitting the large file into small pieces and download

2012-01-26 Thread Arun Kumar
Hi all, I want to build a small download accelerator program. I want to know how to split the file to be downloaded into small pieces and assign the each small piece to a thread for downloading. -- Thanks & Regards, Arun Kumar http://clicknscroll.blogspot

Re: [Tutor] Tutor Digest, Vol 88, Issue 83

2011-06-21 Thread arun kumar
vert them in > > python. Are there any functions,modules or libraries for python to > > achieve this. > Just a question, but did you use Google before asking here? Because the > first hit when searching for "python html to pdf" looks like it should > do what you wa

[Tutor] html files to pdf document

2011-06-20 Thread arun kumar
HI, i have a some 100 plus html individual files.I want to convert them to a single pdf document programatically. How to convert them in python. Are there any functions,modules or libraries for python to achieve this. -- Thank you Arun Kumar http://clicknscroll.blogspot.com

Re: [Tutor] Importing packages

2011-01-21 Thread arun kumar
the files in the 31 directories of the gdata. On 1/21/11, Pacific Morrowind wrote: > Hi; > > On 21/01/2011 1:10 AM, arun kumar wrote: >> Hi, >> >> I'm trying to program with gdata >> (http://code.google.com/p/gdata-python-client/) using python >>

[Tutor] Importing packages

2011-01-21 Thread arun kumar
his folder contains some folders and as well as some files with the .py extension. Also each of the folders contain a __init__.py file. I want to use the classes and functions of the gdata and its inner folders' classes and functions. please tell me how write the import statements -- Thank

Re: [Tutor] about import statement

2011-01-11 Thread arun kumar
I'm trying to program with google api i downloaded the libraries provided by the google. http://code.google.com/apis/gdata/docs/client-libraries.html In oder to write program with google api, i need to write some import statements. But i'm unable to understand the hierarchy of the modules,packages

[Tutor] about import statement

2011-01-10 Thread arun kumar
Hi Friends, I'm Arun Kumar from India, Just a month ago i started learning programming .learned some basics of python. I'm really enjoying programming in python. I have some doubts in python. When we write programs,we write some import statements at the beginning of the code. how to kn

[Tutor] time.mktime(time.gmtime(time tuple from any timezone)) always will be the same ?

2007-07-13 Thread Arun Kumar PG
Guys, May be a dumb question but I am a bit confused (may be coz working over 24 hours for the last couple days:)). so the question is: No matter which timezone I am in if i say time.gmtime(time.mktime(( datetime.date().timetuple( I will always get the same value. - right ? thx for answer

Re: [Tutor] threading.currentThread() always same across request ?

2007-04-14 Thread Arun Kumar PG
Thx guys. now quick question on the usage of thread local storage. In my case I have the below object model: class Base(object):' def __init__(self): self.__service = None def _GetService(): if not hasattr(threading.currentThread(), 'service'): threading.currentThread().service = S

[Tutor] threading.currentThread() always same across request ?

2007-04-13 Thread Arun Kumar PG
Guys, I have a web application and I want to store an object per request so thta that is available across all classes till end of request. I am planning to write the below code in my entry program which is executed as soon as a request comes: entry.py import threading th = threading.current

Re: [Tutor] Any Good book for python

2007-01-04 Thread Arun Kumar PG
"Python in a nutshell" is a good one. Also Python docs are the all time favorite. On 1/4/07, deepak shingan <[EMAIL PROTECTED]> wrote: Hi Folks, I am new in Python area and want to know Python concepts with more deatils. Please suggest some good books on python. Thanks in Advance -Deepak

Re: [Tutor] Writing serialized objects from BaseHTTPServer

2006-10-24 Thread Arun Kumar PG
any replies for the below ? On 10/19/06, Arun Kumar PG <[EMAIL PROTECTED]> wrote: Hi Guys,I wrote a simple server using sockets ,the traditional whille True: scoket.accept() approach. This server reads some pickled parameters sent by the client using the cPickle module -> do some processi

[Tutor] Writing serialized objects from BaseHTTPServer

2006-10-19 Thread Arun Kumar PG
Hi Guys,I wrote a simple server using sockets ,the traditional whille True: scoket.accept() approach. This server reads some pickled parameters sent by the client using the cPickle module -> do some processing -> and finally writes a list of tuples, objects using cPickle back to the client output s

Re: [Tutor] Tkinter and python

2006-10-08 Thread Arun Kumar PG
TECTED]> wrote: On Sun, Oct 08, 2006 at 08:36:31PM +0530, Arun Kumar PG wrote:> Hi,>> You can try:>> >>import sys> >>sys.path.append('')> >>import < module.py>>> Or else you can append the path to global PYTHONPATH environment variab

Re: [Tutor] Tkinter and python

2006-10-08 Thread Arun Kumar PG
Hi,You can try:>> import sys>> sys.path.append('')>> import Or else you can append the path to global PYTHONPATH environment variable and whenever you will type: python on the command prompt/bash shell the script gets executed.Hope that helps.Thanks,- Arun On 10/8/06, max . <[EMAIL PROTECTED]> wro

Re: [Tutor] Suggestions required on Gaming

2006-10-04 Thread Arun Kumar PG
Thanks Luke! This is helpful :)- ArunOn 10/4/06, Luke Paireepinart <[EMAIL PROTECTED]> wrote: Arun Kumar PG wrote:> Thanks Luke.>> I want to make a 3-D car race game between two players. And yes its > gonna  be a networked game where each user will be using his/her own> PC an

Re: [Tutor] Suggestions required on Gaming

2006-10-04 Thread Arun Kumar PG
Also, my idea is to have a centralised Python server which acts as a dispachter to send the coordinate and other information to the gaming clients.On 10/4/06, Arun Kumar PG <[EMAIL PROTECTED]> wrote: Thanks Luke.I want to make a 3-D car race game between two players. And yes its gonna

Re: [Tutor] Suggestions required on Gaming

2006-10-04 Thread Arun Kumar PG
Thanks Luke.I want to make a 3-D car race game between two players. And yes its gonna  be a networked game where each user will be using his/her own PC and playing.- Arun On 10/4/06, Luke Paireepinart <[EMAIL PROTECTED]> wrote: Arun Kumar PG wrote:> Hi All Python lovers!>>> I wan

[Tutor] Suggestions required on Gaming

2006-10-04 Thread Arun Kumar PG
Hi All Python lovers!I want to develop a Car racing game using Python. I was looking for the libraries which I should use for the same. Some of the options are below and I want you suggestions about the best set of tools and APIs as per your experiences: - PyGame- Panda3D- Pixie for rendering- Rend