Re: Where can I find libtiff binary for 64-bit windows - for use in conjunction with Python package libtiff

2019-09-06 Thread Dobedani
Thanks for the answer. That site provides wheels for installing the Python libtiff package - great if "pip install libtiff" does not work out well. Besides that package, you'll need to have a 64-bits DLL on your system for it to work. That's the DLL I'm looking for. -- https://mail.python.org/

Re: Where can I find libtiff binary for 64-bit windows - for use in conjunction with Python package libtiff

2019-09-06 Thread MRAB
On 2019-09-06 14:05, Dobedani wrote: Hi there! I'm using Python package libtiff on Windows (version 0.4.2) - see also https://github.com/pearu/pylibtiff. For this package to work well, it requires you to have a libtiff.dll in your PATH. For 32-bits I got my DLL here: http://gnuwin32.sourceforg

Where can I find libtiff binary for 64-bit windows - for use in conjunction with Python package libtiff

2019-09-06 Thread Dobedani
Hi there! I'm using Python package libtiff on Windows (version 0.4.2) - see also https://github.com/pearu/pylibtiff. For this package to work well, it requires you to have a libtiff.dll in your PATH. For 32-bits I got my DLL here: http://gnuwin32.sourceforge.net/packages/tiff.htm (version 3.8.2)

Re: OT?: Where can I find python programming material in different languages?

2016-06-22 Thread Chris Angelico
On Thu, Jun 23, 2016 at 2:59 AM, Joe Gulizia wrote: > Potentially Off Topic > Not at all off topic! A very reasonable question. > > I am looking for python programming related blogs, papers, videos in Swahili, > Tagalog, Somali, Javanese (Indonesian?), Lithuanian, Pashto, Bulgarian, > Farsi, A

OT?: Where can I find python programming material in different languages?

2016-06-22 Thread Joe Gulizia
Potentially Off Topic I am looking for python programming related blogs, papers, videos in Swahili, Tagalog, Somali, Javanese (Indonesian?), Lithuanian, Pashto, Bulgarian, Farsi, Amharic, Georgian, Kazakh, and Tamil. Although blogs are not online I am looking for material that is not easily a

Re: Where can I find a lexical spec of python?

2011-09-21 Thread Thomas Jollans
On 21/09/11 20:01, Shaofei Cheng wrote: > Yes, I'm using this document now but I was wondering if there is a formal > spec for lexical grammar? It looks like some part of the doc > "http://docs.python.org/py3k/reference/grammar.html"; is missing. > We can find some replacement in lexical_analy

Re:Re: Where can I find a lexical spec of python?

2011-09-21 Thread Shaofei Cheng
Yes, I'm using this document now but I was wondering if there is a formal spec for lexical grammar? It looks like some part of the doc "http://docs.python.org/py3k/reference/grammar.html"; is missing. We can find some replacement in lexical_analysis.html but it seems this document is write fo

Re: Re: Where can I find a lexical spec of python?

2011-09-21 Thread Chris Rebert
On Wed, Sep 21, 2011 at 9:33 AM, 程劭非 wrote: > Thanks Thomas. > I've read the document > http://docs.python.org/py3k/reference/lexical_analysis.html > > but I worried it might leak some language features like "tab magic". > > For I'm working on a parser with JavaScript I need a more strictly defin

Re: Where can I find a lexical spec of python?

2011-09-21 Thread Thomas Jollans
On 21/09/11 18:33, 程劭非 wrote: > Thanks Thomas. > I've read the document > http://docs.python.org/py3k/reference/lexical_analysis.html > > but I worried it might leak some language features like "tab magic". > > For I'm working on a parser with JavaScript I need a more strictly defined > spec.

Re:Re: Where can I find a lexical spec of python?

2011-09-21 Thread 程劭非
Thanks Thomas. I've read the document http://docs.python.org/py3k/reference/lexical_analysis.html but I worried it might leak some language features like "tab magic". For I'm working on a parser with JavaScript I need a more strictly defined spec. Currently I have a highlighter here ->http:

Re: Where can I find a lexical spec of python?

2011-09-21 Thread Thomas Jollans
On 21/09/11 11:44, 程劭非 wrote: > Hi, everyone, > I've found there was several tokens used in python's > grammar(http://docs.python.org/reference/grammar.html) but I didn't see > their definition anywhere. The tokens listed here: They should be documented in http://docs.python.org/py3k/reference/

Where can I find a lexical spec of python?

2011-09-21 Thread 程劭非
Hi, everyone, I've found there was several tokens used in python's grammar(http://docs.python.org/reference/grammar.html) but I didn't see their definition anywhere. The tokens listed here: NEWLINE ENDMARKER NAME INDENT DEDENT NUMBER STRING I've got some infomations from the source code(htt

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
"Martin P. Hellwig" wrote in message news:hnbq8q$vg...@news.eternal-september.org... > On 03/11/10 22:08, Cal Who wrote: > >> Thanks, that helped a lot. >> >> I'm having trouble knowing what to search for to find documenatation. For >> example, is print a Python command, a numpy command or a j

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Martin P. Hellwig
On 03/11/10 22:08, Cal Who wrote: Thanks, that helped a lot. I'm having trouble knowing what to search for to find documenatation. For example, is print a Python command, a numpy command or a java command? I like to read the documentation even if the command is working for me. Thanks again

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
"Robert Kern" wrote in message news:mailman.631.1268335358.23598.python-l...@python.org... > On 2010-03-11 13:01 PM, Cal Who wrote: >> data = readdata( 'data/input.dat', delimiter = ',' ) >> >> input = data[:, :9]#nine data columns >> &

Re: Where can I find documentation for data[:,9]

2010-03-11 Thread Robert Kern
On 2010-03-11 13:01 PM, Cal Who wrote: data = readdata( 'data/input.dat', delimiter = ',' ) input = data[:, :9]#nine data columns Where can I find documentation for the data[:,9] in the code above. Been looking and found many examples but would like to know the defin

Where can I find documentation for data[:,9]

2010-03-11 Thread Cal Who
data = readdata( 'data/input.dat', delimiter = ',' ) input = data[:, :9]#nine data columns Where can I find documentation for the data[:,9] in the code above. Been looking and found many examples but would like to know the definition. I need to skip the first column

where can I find gdkimlib (imlib bindings)?

2008-04-24 Thread Xavier Toth
I'm trying to get some old code that imported GdkImlib to work but I can't find these a current version of these binding, anyone know where they are? -- http://mail.python.org/mailman/listinfo/python-list

Re: Where can I find :

2008-04-02 Thread alex23
On Apr 2, 10:08 pm, [EMAIL PROTECTED] wrote: > On Mar 30, 1:22 am, [EMAIL PROTECTED] wrote: > > [the usual masturbatory castironpi ramble] > > What? Yeah, that's what pretty much everyone says regarding his posts. Very very little signal amongst that noise. -- http://mail.python.org/mailman/list

Re: Where can I find :

2008-04-02 Thread lbonafide
On Mar 30, 1:22 am, [EMAIL PROTECTED] wrote: > > That's weird. I feel like I could go on about an introductory program > for days and days, la. > > I usually start (both times) with interpreted vs. compiled. It's a > layer of abstraction. But it's very weird; the layers can't tell > either of ea

Re: Where can I find :

2008-04-02 Thread lbonafide
On Mar 31, 11:07 am, Laurent Pointal <[EMAIL PROTECTED]> wrote: > You may look at "Dive into Python", there is an online version, > translation in some languages other than english (if needed). It propose > a line by line explanation on many scripts targetting language and > libraries usage. > > h

Re: Where can I find :

2008-03-31 Thread Laurent Pointal
Le Sat, 29 Mar 2008 20:15:59 -0700, pythonnubie a écrit : > Hi All : > Does anyone know where I can find either a book or a website that > explains beginning python by actually building a project line by > line and explaining it indepth . I am primarily interested in > understading fl

Re: Where can I find :

2008-03-31 Thread Jorgen Grahn
On Sun, 30 Mar 2008 16:41:31 -0700, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > On 30 Mar 2008 23:07:02 GMT, Jorgen Grahn <[EMAIL PROTECTED]> > declaimed the following in comp.lang.python: > >> >> He *might* simply be talking about if, for, while, break and so on -- >> things which control prog

Re: Where can I find :

2008-03-30 Thread Jorgen Grahn
On Sat, 29 Mar 2008 21:19:32 -0700, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > On Sat, 29 Mar 2008 20:15:59 -0700 (PDT), pythonnubie > <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: > >> Hi All : >> Does anyone know where I can find either a book or a website that >> expla

Re: Where can I find :

2008-03-29 Thread castironpi
On Mar 29, 11:19 pm, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > On Sat, 29 Mar 2008 20:15:59 -0700 (PDT), pythonnubie > <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: > > > Hi  All : > > Does anyone know where I  can find  either a book or a website  that > > explains  beginni

Re: Where can I find :

2008-03-29 Thread Gabriel Genellina
En Sun, 30 Mar 2008 00:15:59 -0300, pythonnubie <[EMAIL PROTECTED]> escribió: > Does anyone know where I can find either a book or a website that > explains beginning python by actually building a project line by > line and explaining it indepth . I am primarily interested in > unders

Where can I find :

2008-03-29 Thread pythonnubie
Hi All : Does anyone know where I can find either a book or a website that explains beginning python by actually building a project line by line and explaining it indepth . I am primarily interested in understading flowcontrol as well as syntax . If it was related to netwoprking th

Re: Looking for contract developer(s) - where can I find them?

2007-02-23 Thread John J. Lee
[EMAIL PROTECTED] writes: > On Feb 21, 9:51 pm, Scott SA <[EMAIL PROTECTED]> wrote: > > > > I've just sent a job listing to python.org and posted this message on > > comp.lang.python, > > Interesting, so Python-list@python.org and comp.lang.python are > _related_. I guess that means I'm the new g

Re: Looking for contract developer(s) - where can I find them?

2007-02-21 Thread rscottco
On Feb 21, 9:51 pm, Scott SA <[EMAIL PROTECTED]> wrote: > > I've just sent a job listing to python.org and posted this message on > comp.lang.python, Interesting, so Python-list@python.org and comp.lang.python are _related_. I guess that means I'm the new guy on the block. Well I guess this joke i

Looking for contract developer(s) - where can I find them?

2007-02-21 Thread Scott SA
Hi, I've just sent a job listing to python.org and posted this message on comp.lang.python, but am also trying to proactively find python developers through other means. python.org and guru.com notwithstanding, most job-sites to seem only support people/organizations looking for full/part-time e

Looking for contract developer(s) - where can I find them?

2007-02-21 Thread rscottco
Hi, I've just sent a job listing to python.org, but am also trying to proactively find python developers through other means. python.org and guru.com notwithstanding, most job-sites to seem only support people/organizations looking for full/part-time employment or with full-time/part-time positio

Re: Where can I find good python code?

2006-10-16 Thread kdart
I think the following is a package with a lot of good code. But then, I'm biased. ;-) http://code.google.com/p/pynms/ On Oct 13, 9:08 am, "js " <[EMAIL PROTECTED]> wrote: > Hi, > > I've learned basics of Python and want to go to the next step. > So I'm looking for good python examples > I steal

Re: Where can I find good python code?

2006-10-15 Thread vasudevram
Chris Lambacher wrote: > On Sat, Oct 14, 2006 at 01:08:37AM +0900, js wrote: > > Hi, > > > > I've learned basics of Python and want to go to the next step. > > So I'm looking for good python examples > > I steal good techniques from. > > > > I found Python distribution itself contains some examp

Re: Where can I find good python code?

2006-10-13 Thread Chris Lambacher
On Sat, Oct 14, 2006 at 01:08:37AM +0900, js wrote: > Hi, > > I've learned basics of Python and want to go to the next step. > So I'm looking for good python examples > I steal good techniques from. > > I found Python distribution itself contains some examples in Demo directory. > I spent some

Re: Where can I find good python code?

2006-10-13 Thread [EMAIL PROTECTED]
js wrote: > Hi, > > I've learned basics of Python and want to go to the next step. > So I'm looking for good python examples > I steal good techniques from. > Any recommendations? The cookbook, dead-tree version reccomended, otherwise try here: http://aspn.activestate.com/ASPN/Cookbook/Python/ L

Re: Where can I find good python code?

2006-10-13 Thread hg
js wrote: > Hi, > > I've learned basics of Python and want to go to the next step. > So I'm looking for good python examples > I steal good techniques from. > > I found Python distribution itself contains some examples in Demo > directory. > I spent some time to read them and > I think they're go

Where can I find good python code?

2006-10-13 Thread js
Hi, I've learned basics of Python and want to go to the next step. So I'm looking for good python examples I steal good techniques from. I found Python distribution itself contains some examples in Demo directory. I spent some time to read them and I think they're good but seemed not so practica

Re: where can I find Python acceptance test suite?

2006-08-07 Thread The Eternal Squire
Thanks. Terry Reedy wrote: > "The Eternal Squire" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > I've been doing some hacking of the Python engine, and I've been > > looking for > > where the comprehensive regression tests are kept so that I can > > determine > > where I've brok

Re: where can I find Python acceptance test suite?

2006-08-06 Thread Terry Reedy
"The Eternal Squire" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I've been doing some hacking of the Python engine, and I've been > looking for > where the comprehensive regression tests are kept so that I can > determine > where I've broken part of the engine. ...python2x/Lib/

where can I find Python acceptance test suite?

2006-08-06 Thread The Eternal Squire
All, I've been doing some hacking of the Python engine, and I've been looking for where the comprehensive regression tests are kept so that I can determine where I've broken part of the engine. Thanks in advance, The Eternal Squire -- http://mail.python.org/mailman/listinfo/python-list

Re: sockets, where can I find documentation?

2006-03-03 Thread John Pote
Thanks everyone for such a quick response. Brilliant! John Pote "John Pote" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > > I want to use python on a server to access incoming TCP port accesses. So > I need to use the socket interface which is new to me. To quote the P

Re: sockets, where can I find documentation?

2006-03-03 Thread Rene Pijlman
John Pote: >I want to use python on a server to access incoming TCP port accesses. So I >need to use the socket interface which is new to me. You may also want to look at Twisted: http://twistedmatrix.com/trac/ >Where can I get the various papers mentioned in the manual? And as I like >books s

Re: sockets, where can I find documentation?

2006-03-03 Thread utabintarbo
For a good general book on networking with python, try Foundations of Python Network Programming by John Goerzen. http://www.amazon.com/gp/product/1590593715/qid=1141390241/sr=1-9/ref=sr_1_9/104-7194399-1227965?s=books&v=glance&n=283155 -- http://mail.python.org/mailman/listinfo/python-list

Re: sockets, where can I find documentation?

2006-03-03 Thread Mc Osten
On Fri, 03 Mar 2006 11:41:05 GMT, John Pote wrote: > Where can I get the various papers mentioned in the manual? And as I like > books sitting on the shelf can someone recommend a book on sockets. Unix Network Programming by Stevens -- USB Priests for only 10$ -- http://mail.python.org/mailma

sockets, where can I find documentation?

2006-03-03 Thread John Pote
Hi all, I want to use python on a server to access incoming TCP port accesses. So I need to use the socket interface which is new to me. To quote the Py Library Reference "7.2 socket -- Low-level networking interface":- For an introduction to socket programming (in C), see the following papers:

Re: Where can I find string.translate source?

2005-11-20 Thread bobueland
Thanks Mike and Fredrik. In my Python installation there is no directory called Objects. I use Windows and I downloaded Python from http://www.python.org/download/ As I looked closer I saw that the link # Python 2.4.2 Windows installer (Windows binary -- does not include source) which cl

Re: Where can I find string.translate source?

2005-11-20 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > The module string has a function called translate. I tried to find the > source code for that function. In: > > C:\Python24\Lib > > there is one file called > > string.py > > I open it and it says > > """A collection of string operations (most are no longer used

Re: Where can I find string.translate source?

2005-11-20 Thread Mike Meyer
[EMAIL PROTECTED] writes: > Inside the file string.py I couldn't find the source code for > translate. Where could it be? Object/stringmodule.c in the python source distribution. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for m

Where can I find string.translate source?

2005-11-19 Thread bobueland
The module string has a function called translate. I tried to find the source code for that function. In: C:\Python24\Lib there is one file called string.py I open it and it says """A collection of string operations (most are no longer used). Warning: most of the code you see here isn

Re: Where can I find an example that uses FTP standard library?

2005-11-15 Thread cosmo
QuadriKev wrote: >I would like to see examples of programs written. http://python.codefetch.com lets you search published books for Python example source code. > I am also interested in using Telnet to check services and things on > the Linux server. a search for "telnet" on codefetch brought u

Re: Where can I find an example that uses FTP standard library?

2005-11-15 Thread Larry Bates
Pick up a copy of the Python Cookbook, it is full of examples. You also might want to check out this site: http://aspn.activestate.com/ASPN/Cookbook/Python It contains 100's of code samples that might help. The archives of this list are also a good place to look. Google is also your friend. I

Re: Where can I find an example that uses FTP standard library?

2005-11-14 Thread Grig Gheorghiu
I have some code that looks something like this: from ftplib import FTP ftp = FTP() # connect and login ftp.connect(server_name) ftp.login(user_name, password) cmd = "STOR %s" % filename #"ASCII transfer" l = open(filename) ftp.storlines(cmd, l) #"BIN transfer" l = open(filename, 'rb') ftp.storbi

Where can I find an example that uses FTP standard library?

2005-11-14 Thread QuadriKev
I am fairly new to programming in Python. There are a number of cases where I would like to see examples of programs written. I like to write them on Windows and in some cases put them on my Linux server to do something useful. I am also interested in using Telnet to check services and things on

Re: import __main__ where can i find a module called "__main__.py"?

2005-08-21 Thread John Machin
wen wrote: > and, in which case, the following case will happen: > if __name__!='__main__': > do_sth() > > any help would be appreciated. > > Sorry, but your question is rather difficult to interpret. For a start, you don't need/want to import __main__. On import, __name__ is set to the na

Re: import __main__ where can i find a module called "__main__.py"?

2005-08-21 Thread gene tani
http://www.python.org/doc/faq/programming.html#how-do-i-find-the-current-module-name -- http://mail.python.org/mailman/listinfo/python-list

import __main__ where can i find a module called "__main__.py"?

2005-08-21 Thread wen
and, in which case, the following case will happen: if __name__!='__main__': do_sth() any help would be appreciated. -- http://mail.python.org/mailman/listinfo/python-list

Re: where can i find pylibpcap module for win32?

2005-05-30 Thread ionel
i've compiled a pcapy http://lenoi.3x.ro/ works fine ( using it :) ) On 5/30/05, jerky <[EMAIL PROTECTED]> wrote: > thanks for your any imformation. > > > -- > http://mail.python.org/mailman/listinfo/python-list > -- ionel. -- http://mail.python.org/mailman/listinfo/python-list

where can i find pylibpcap module for win32?

2005-05-30 Thread jerky
thanks for your any imformation. -- http://mail.python.org/mailman/listinfo/python-list

Re: Where can I find sample "beginner" programs to study?

2005-01-31 Thread Franz Steinhaeusler
On Fri, 28 Jan 2005 21:41:05 +0100, moma <[EMAIL PROTECTED]> wrote: >Eggs are here. Bring some bacon. >http://www.python-eggs.org/links.html Hi, interesting site, but who is maintaining this page. I'd like to add some new links. -- Franz Steinhaeusler -- http://mail.python.org/mailman/listinfo

Re: Where can I find sample "beginner" programs to study?

2005-01-28 Thread Marc Poulin
Todd_Calhoun wrote: > I'm trying to learn Python (and programming), and I'm wondering if there > are any places where I can find small, simple programs to study. > > Thanks. Look at http://www.livewires.org.uk/python/ Good projects and tutorials for beginners. -- http://mail.python.org/mailma

Re: Where can I find sample "beginner" programs to study?

2005-01-28 Thread Todd_Calhoun
Thanks for the great links. The cookbook page has some smaller stuff that looks great. "JanC" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Todd_Calhoun schreef: > >> I'm trying to learn Python (and programming), and I'm wondering if >> there are any places where I can find sma

Re: Where can I find sample "beginner" programs to study?

2005-01-28 Thread JanC
Todd_Calhoun schreef: > I'm trying to learn Python (and programming), and I'm wondering if > there are any places where I can find small, simple programs to study. Try: -- JanC "Be strict when sending and toler

Re: Where can I find sample "beginner" programs to study?

2005-01-28 Thread moma
Todd_Calhoun wrote: I'm trying to learn Python (and programming), and I'm wondering if there are any places where I can find small, simple programs to study. Thanks. Hello, http://www.python.org (docs -> tutorial) http://www.python.org/doc/ ! http://www.diveintopython.org http://www.byteofpyth

Re: Where can I find sample "beginner" programs to study?

2005-01-28 Thread wes weston
Todd_Calhoun wrote: I'm trying to learn Python (and programming), and I'm wondering if there are any places where I can find small, simple programs to study. Thanks. Todd, Have you been here: http://www.python.org/doc/ and tried the tutorial or beginners guide? The tutorial has all the piec

Where can I find sample "beginner" programs to study?

2005-01-28 Thread Todd_Calhoun
I'm trying to learn Python (and programming), and I'm wondering if there are any places where I can find small, simple programs to study. Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Where can I find Mk4py.dll for python24 ?

2005-01-26 Thread Erik Johnson
I don't know what metakit or the file you are looking for is, but a simple search on google turns up the following article where a guy built it for Python 2.2 and was willing to mail that to people. Try contacting him: http://www.equi4.com/pipermail/metakit/2002-March/000560.html HTH, -ej "

Re: Where can I find Mk4py.dll for python24 ?

2005-01-25 Thread Steven Bethard
Jose Rivera wrote: I installed the new release and I have not been able to make work metakit. Please give me some help to enjoy metakit and python 24. Repeating your request every 10 minutes is not likely to get you help quicker. On the contrary, it's more likely to make people ignore your threa

Where can I find Mk4py.dll for python24 ?

2005-01-25 Thread Jose Rivera
I installed the new release and I have not been able to make work metakit. Please give me some help to enjoy metakit and python 24. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Where can I find Mk4py.dll for Python24?

2005-01-25 Thread Jose Rivera
Hi I changed for python24 and the only thing missed is metakit for python24. Thanks -- http://mail.python.org/mailman/listinfo/python-list