> Probably the simplest thing is to just add the attributes after the
> class body, e.g.::
>
> >>> class MyClass(object):
> ... pass
> ...
> >>> for attr in ['attr1', 'attr2']:
> ... setattr(MyClass, attr, MyDesc(attr))
> ...
> >>> c = MyClass()
> >>>
eError: not enough image data
Which I'm pretty sure is because it's expecting a 24bit image. Of course if
I tune down the width and height or change the format to B&W ("L") then it
*does* display an image, the B&W one even having recognizable features, just
not the
raw", "BGR;16")
im.show()
Although I have no idea *why* it works, other than the fact that I'm now
using the correct number of bits per pixel. :)
Anyone have thoughts on this?
Thanks!
J
"Jason B" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROT
Hi all,
I'm somewhat new to Python and I'm trying to figure out the best way to
accomplish the following:
>From an array of pixel data in an XML file (given the format, width and
height of the image as attributes) I must read in the data and save it off
as a bmp file.
I've gotten the PIL and
Thanks, Roel...
The Image.frombuffer() method looks promising, but the "mode" parameter
seems a bit too limited for my needs. I must be able to specify not only
the order of the bits (RGB in any order) but also whether the format is 565,
555, etc.
Maybe I need to work outside the bounds of PI
My mistake, I see the section now about "Writing Your Own File Decoder..."
Thanks again for your help!
- J
"Jason B" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Thanks, Roel...
>
> The Image.frombuffer() method looks promising, but the
I started with the "How-To Guide for Descriptors" by Raymond Hettinger
http://users.rcn.com/python/download/Descriptor.htm
It is one of several docs on the "New-style Classes" page at python.org
http://www.python.org/doc/newstyle/
--
http://mail.python.org/mailman/listinfo/python-list
I'm currently working on a script that I will run when I leave my
computer on at night. It runs external commands like Ad-Aware, Spybot,
AVG, Avast, and the like. The problem is, I want to know how to make it
so that one command starts only after the last one finishes. When I run
them, they end up
The problem is with that (which is what I'm doing already) is that one
app is in a window and one app is on the command line. Thus, you end up
with both apps running at the same time. Are there any modules that
have functions for checking when windows are opened or closed?
--
http://mail.python.o
Hi,
I appologize if this is slightly OT, but I am really struggling to figure
out how to install Python2.4 on RHEL4. To make matters worse, the RHEL4
machine is a 64bit architecture.
I search pyvault, but they only have for .i386. Does anyone know where /
how I can find Python2.4 for RHEL4 x
"Jarek Zgoda" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Eric B. pisze:
>
>> I appologize if this is slightly OT, but I am really struggling to figure
>> out how to install Python2.4 on RHEL4. To make matters worse, the RHEL4
>> machine
Hi,
For those on several python lists, I appologize in advance for
cross-posting, but I'm really not sure which list is best to ask for
assistance with this.
Currently, I am trying to build the python2.4 SRPM from Python.org on a
RHEL4 x64 platform, but the build is failing with a very non-descri
"Michael Wieher" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Sorry I don't have much of a better idea, but if I had this kind of
> problem
> with an RPM, I'd just grab the tarball and start hacking away at
> ./configure
> pre-requirements, trying to use --options to trim it dow
Senior Developer
Must be proficient in Python, expert preferred
Must have one large scale public web project in their portfolio,
preferably startup experience
Must be able to develop with certain architectural considerations in
mind at all times, such as: multilingual text, runtime efficiency in a
Hi,
Can anyone help me out?
Thanks,
Praveena.
Never miss a thing. Make Yahoo your homepage.
--
http://mail.python.org/mailman/listinfo/python-list
Can anyone help me out??
Never miss a thing. Make Yahoo your homepage.
--
http://mail.python.org/mailman/listinfo/python-list
Hey,
Why this code is working?
>>> def f1( ):
... x = 88
... f2(x)
...
>>> def f2(x):
... print x
...
>>> f1( )
88
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
On Jan 14, 11:55 am, Bruno Desthuilliers wrote:
> Hussein B a écrit :
>
> > Hey,
> > Why this code is working?
>
> >>>> def f1( ):
> > ... x = 88
> > ... f2(x)
> > ...
> >>>> def f2(x):
> > ... print x
&g
On Jan 14, 2:21 pm, Steven D'Aprano wrote:
> On Wed, 14 Jan 2009 01:57:48 -0800, Hussein B wrote:
> >> Well... Because it is correct ?
>
> >> What make you think it _shouldn't_ work ?
>
> > Because def2 is defined after def1 in an interpreted languag
Hey,
I'm new with database interactions in Python and I'm not sure if I'm
handling the cursor and transactions correctly:
cursor = db.cursor(MySQLdb.cursors.DictCursor)
cursor.execute(flate_rate_pkgs_sql)
rows = cursor.fetchall()
#I have for loop here to iterate over rows
cursor.execute
Hey,
I know the basics of interacting with databases in Python.
How to start a transaction in case I want to group a couple of insert
and update statements into a single operation?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hey,
I'm trying to get the get the date before today, I tried this:
d = datetime.now() - timedelta(days = -1)
But I got the date of tomorrow.
when I tried:
d = datetime.now() + timedelta(days = -1)
I got the date of yesterday.
Would you please explain to me why I got the date of yesterday when I
ad
Hey,
I'm creating a report that is supposed to harvest the data for the
previous month.
So I need a way to get the first day and the last day of the previous
month.
Would you please tell me how to do this?
Thanks in advance.
--
http://mail.python.org/mailman/listinfo/python-list
On Jan 20, 5:04 pm, Carsten Haese wrote:
> Hussein B wrote:
> > Hey,
> > I'm creating a report that is supposed to harvest the data for the
> > previous month.
> > So I need a way to get the first day and the last day of the previous
> > month.
>
>
Hey,
I have a log file that doesn't contain the word "Haskell" at all, I'm
just trying to do a little performance comparison:
++
from datetime import time, timedelta, datetime
start = datetime.now()
print start
lines = [line for line in file('/media/sda4/Servers/Apache/
Tomcat-6.0.14/lo
dear all,
I want to connect my A machine to the E server via servers B, C and D,
is there a way to set-up such "server chain" with python socket module (or
other module) ?
many thanks
boris
vn%ibo%ris[at]hotmail.com
Hey,
What is /usr/lib/pythonx.y/site-packages folder and for what it is
used usually?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 28, 2:04 pm, "Chris Rebert" wrote:
> On Sun, Dec 28, 2008 at 3:40 AM, Hussein B wrote:
> > Hey,
> > What is /usr/lib/pythonx.y/site-packages folder and for what it is
> > used usually?
>
> I believe it's where third-party libraries are t
Hey,
What is the best code coverage tool available for Python?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hey,
Which Adapter to use with PostgreSQL:
PyPgSQL, psycopg or PyGreSQL?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
Which PostgreSQL adapter to use:
PyGreSQL, PyPgSQL or psycopg?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
r <[EMAIL PROTECTED]> writes:
> On Nov 5, 7:55 pm, [EMAIL PROTECTED] (Edwin) wrote:
>> Hi there,
>>
>> I've been looking for a snippet manager and found PySnippet but it
>> requires PyGTK. Do you know any other option that doesn't need much?
>>
>> I'm sort of new to python and user interfaces seem
Robert Lehmann <[EMAIL PROTECTED]> writes:
> I don't think there is a one-size-fits-all solution.
I definetly agree.
> Setting up a 'snippets' repository sounds good if you just want to be
> able to look back at what you've done and/or have a place to stash away
> quick tests. I have set up a
Hey,
I'm retrieving records from MySQL database that contains non english
characters.
Then I create a String that contains HTML markup and column values
from the previous result set.
+
markup = u'''.'''
for row in rows:
markup = markup + '' + row['id']
markup = markup + '
+
Then I'
On Mar 1, 4:51 pm, Philip Semanchuk wrote:
> On Mar 1, 2009, at 8:31 AM, Hussein B wrote:
>
> > Hey,
> > I'm retrieving records from MySQL database that contains non english
> > characters.
> > Then I create a String that contains HTML markup and column valu
On Mar 1, 11:27 pm, "J. Clifford Dyer" wrote:
> On Sun, 2009-03-01 at 09:51 -0500, Philip Semanchuk wrote:
> > On Mar 1, 2009, at 8:31 AM, Hussein B wrote:
>
> > > Hey,
> > > I'm retrieving records from MySQL database that contains non english
> &
On Mar 2, 4:03 pm, "J. Clifford Dyer" wrote:
> On Mon, 2009-03-02 at 00:33 -0800, Hussein B wrote:
> > On Mar 1, 11:27 pm, "J. Clifford Dyer" wrote:
> > > On Sun, 2009-03-01 at 09:51 -0500, Philip Semanchuk wrote:
> > > > On Mar 1,
On Mar 2, 4:31 pm, John Machin wrote:
> On Mar 2, 7:30 pm, Hussein B wrote:
>
> > On Mar 1, 4:51 pm, Philip Semanchuk wrote:
>
> > > On Mar 1, 2009, at 8:31 AM, Hussein B wrote:
>
> > > > Hey,
> > > > I'm retrieving records from MyS
On Mar 2, 5:40 pm, John Machin wrote:
> On Mar 3, 1:50 am, Hussein B wrote:
>
>
>
> > On Mar 2, 4:31 pm, John Machin wrote:> On Mar 2,
> > 7:30 pm, Hussein B wrote:
>
> > > > On Mar 1, 4:51 pm, Philip Semanchuk wrote:
>
> > > > > On
On Mar 3, 11:05 am, Hussein B wrote:
> On Mar 2, 5:40 pm, John Machin wrote:
>
>
>
> > On Mar 3, 1:50 am, Hussein B wrote:
>
> > > On Mar 2, 4:31 pm, John Machin wrote:> On Mar 2,
> > > 7:30 pm, Hussein B wrote:
>
> > > > > On Mar
On Mar 3, 12:21 pm, John Machin wrote:
> On Mar 3, 8:49 pm, Hussein B wrote:
>
>
>
> > On Mar 3, 11:05 am, Hussein B wrote:
>
> > > On Mar 2, 5:40 pm, John Machin wrote:
>
> > > > On Mar 3, 1:50 am, Hussein B wrote:
>
> > > > > On
On Mar 3, 1:54 pm, John Machin wrote:
> On Mar 3, 10:22 pm, Hussein B wrote:
>
> > > > Hey,
> > > > I added use_unicode and charset keyword params to the connect() method
>
> > > Hey, that was a brilliant idea -- I was just about to ask you to try
> &
Hi,
I'm trying to write a program that monitor Internet Explorer events - creating/deletion of the process, loading pages, creating tabs etc. I managed to monitor creation/deletion by using WMI, but I couldn't find a way to monitor the rest of the events. Is there a way to do this ?
Thanks.
when i used paramiko in python2.5 i got the error below.
File "C:\praveena\python scripts\sshlib\ssh.py", line 5, in
import paramiko
File "C:\Python25\Lib\site-packages\paramiko\__init__.py", line 69, in
from transport import randpool, SecurityOptions, Transport
File "C:\Python25\L
Hi.
I'm a Java guy and I'm playing around Python these days...
In Java, we organize our classes into packages and then jarring the
packages into JAR files.
What are modules in Python?
What is the equivalent of modules in Java?
Please correct me if I'm wrong:
I saved my Python code under the file
On Jul 28, 6:55 am, Floris Bruynooghe <[EMAIL PROTECTED]>
wrote:
> On Jul 28, 9:54 am, Hussein B <[EMAIL PROTECTED]> wrote:
>
> > Hi.
> > I'm a Java guy and I'm playing around Python these days...
> > In Java, we organize our classes into packages an
On Jul 28, 8:11 am, Duncan Booth <[EMAIL PROTECTED]> wrote:
> Hussein B <[EMAIL PROTECTED]> wrote:
> > If I have a couple of modules, is there a way to package them? or
> > there is no such a thing in Python?
>
> It sounds rather as though you haven't yet g
Hi.
Please correct my if I'm wrong but it seems to me that the major
continuous integration servers (Hudson, CruiseControl, TeamCity ..)
don't support Python based application.
It seems they mainly support Java, .NET and Ruby.
Can I use one of the previous listed servers for Python project?
Thanks.
Hi.
Apache Ant is the de facto building tool for Java (whether JSE, JEE
and JME) application.
With Ant you can do what ever you want: compile, generate docs,
generate code, packing, deploy, connecting to remote servers and every
thing.
Do we have such a tool for Python projects?
Thank you.
--
http:
Hey,
I'm a Java/Java EE developer and I'm playing with Python these days.
I like the Python language so much and I like its communities and the
Django framework.
My friends are about to open a Ruby/Rails shop and they are asking me
to join them.
I don't know what, sure I'm not leaving Java, but the
On Aug 13, 6:51 am, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED]
nomine.org> wrote:
> -On [20080813 13:16], Hussein B ([EMAIL PROTECTED]) wrote:
>
> >My friends are about to open a Ruby/Rails shop and they are asking me
> >to join them.
>
> I hope they are fully
On Aug 13, 7:40 am, Bruno Desthuilliers wrote:
> Álvaro G. Vicario a écrit :
>
>
>
> > Hussein B escribió:
> >> The sad fact (at least to me), Ruby is getting a lot of attention
> >> these days.
> >> Why Python isn't getting this attention alth
On Aug 13, 7:50 am, Bruno Desthuilliers wrote:
> Hussein B a écrit :
>
> > Hey,
> > I'm a Java/Java EE developer and I'm playing with Python these days.
> > I like the Python language so much and I like its communities and the
> > Django framework.
>
On Aug 13, 8:08 am, Bruno Desthuilliers wrote:
> Hussein B a écrit :
> (snip)
>
>
>
> > Personally, I don't like the RoR framework at all.
> > It doesn't come with any thing new or revolutionary,
>
> You could say the same about Python and about Djang
On Aug 13, 11:14 am, Alia Khouri <[EMAIL PROTECTED]> wrote:
> Hussein B wrote:
> > I'm a Java/Java EE developer and I'm playing with Python these days.
> > I like the Python language so much and I like its communities and the
> > Django framework.
>
>
can anyone help me?
You rock. That's why Blockbuster's offering you one month of Blockbuster Total
Access, No Cost.
http://tc.deals.yahoo.com/tc/blockbuster/text5.com--
http://mail.python.org/mailman/l
I am in need for a Sr. Lead Architect for an outstanding company
located in NYC. The company has been outsourcing their technology to
California and are bringing the office to NYC. The company is looking
for an individual who can build and manage the technolgy team in NYC.
Individual must be a Py
On Aug 15, 10:05 am, Bruno Desthuilliers
<[EMAIL PROTECTED]> wrote:
> Hussein B a écrit :
> (snip)
>
> > But this critisim looks so serious:
> >http://en.wikipedia.org/wiki/Ruby_programming_language#Criticism
>
> Most of what's written here could apply to Py
Hey,
AOP is build in Groovy language via many means, does Python support
AOP out of the box without the need for such tools:
http://pythonsource.com/open-source/aspect-oriented-frameworks
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hey,
Is the standard library of Python is compiled (you know, the pyc
thing)?
Is it allowed to edit the source code of the standard library?
I'm not talking about submitting the modified code to Python source
code repository, I'm just asking if some one can edit the source code
in his own machine.
On Aug 19, 7:16 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
> Hussein B wrote:
> > Is the standard library of Python is compiled (you know, the pyc
> > thing)?
> > Is it allowed to edit the source code of the standard library?
> > I'm not talking about
Hey,
Are Python eggs and RubyGems do the same thing (of course Gems is for
Ruby and eggs is for Python)?
If yes, is it outstanding as the RubyGems?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
On Aug 19, 8:10 am, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Aug 19, 8:16 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hussein B wrote:
> > > Is the standard library of Python is compiled (you know, the pyc
> > > thing)?
> > &
Hey,
Suppose I have a Python application consists of many modules (lets say
it is a Django application).
If all the modules files are importing sys module, how many times the
sys module will be compiled and executed?
Only once (the first time the PVM locates, compiles and executes the
sys module)?
On Aug 20, 5:43 am, John Machin <[EMAIL PROTECTED]> wrote:
> On Aug 20, 8:08 pm, Hussein B <[EMAIL PROTECTED]> wrote:
>
> > Hey,
> > Suppose I have a Python application consists of many modules (lets say
> > it is a Django application).
> > If all the m
On Aug 20, 5:43 am, John Machin <[EMAIL PROTECTED]> wrote:
> On Aug 20, 8:08 pm, Hussein B <[EMAIL PROTECTED]> wrote:
>
> > Hey,
> > Suppose I have a Python application consists of many modules (lets say
> > it is a Django application).
> > If all the m
On Aug 20, 6:39 am, Bruno Desthuilliers wrote:
> Hussein B a écrit :
> (snip)
>
> > One more question:
> > If I have this structure:
> > orig/com/domain/project/Klass1.py
> > Klass2.py
> > __init__.py
>
Hey,
Well, as you all know by now, I'm learning Python :)
One thing that is annoying my is the OOP in Python.
Consider this code in Java:
--
public class Car {
private int speed;
private String brand;
// setters & getters
}
--
With one look at the top of the class, you can know that each
ins
Hey,
Please correct me if I'm wrong but Python doesn't support method
overload, right?
--
def method(self):
#code
def method(self, data):
#code
--
The last declaration of method() erase the previous one (like
JavaScript).
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I'm familiar with static method concept, but what is the class method?
how it does differ from static method? when to use it?
--
class M:
def method(cls, x):
pass
method = classmethod(method)
--
Thank you for your time.
--
http://mail.python.org/mailman/listinfo/python-list
Hey,
I noted that Python encourage the usage of:
--
obj.prop = data
x = obj.prop
--
to set/get an object's property value.
What if I want to run some logic upon setting/getting a property?
What is Python preferred method to do so (using the new feature
'property')?
I don't think __getattr__ and __s
On Aug 24, 5:28 am, Peter Otten <[EMAIL PROTECTED]> wrote:
> Hussein B wrote:
> > I noted that Python encourage the usage of:
> > --
> > obj.prop = data
> > x = obj.prop
> > --
> > to set/get an object's property value.
> > What if I want to
On Aug 24, 7:12 pm, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> On Sun, 24 Aug 2008 12:28:53 +0200, Peter Otten wrote:
> > Hussein B wrote:
>
> >> I noted that Python encourage the usage of: --
> >> obj.prop = data
> >> x = obj
On Aug 25, 4:31 am, Steven D'Aprano
<[EMAIL PROTECTED]> wrote:
> On Sun, 24 Aug 2008 23:56:27 -0700, Hussein B wrote:
> > On Aug 24, 7:12 pm, Steven D'Aprano <[EMAIL PROTECTED]
> > cybersource.com.au> wrote:
> >> >> I noted that Python
Hey,
This is an example of a generator function:
=
def counter(start_at=0):
count = start_at
while True:
val = (yield count)
if val is not None:
count = val
else:
count += 1
==
>>> count = counter(5)
>>> count.next()
5
>>> count.send(9
I'm trying to get Subversion 'hook scripts' working on an Ubuntu box and the
following fails.
from svn import fs, repos, core, delta
As far as I can tell there are two Python Subversion libraries, 'pysvn' and
'svn':
'pysvn' from http://pysvn.tigris.org/ appears to be a client side interface and
i
On Thu, 28 Aug 2008 19:58:10 GMT, Matthew Woodcraft <[EMAIL PROTECTED]>
wrote:
>Mike B writes:
>> I'm trying to get Subversion 'hook scripts' working on an Ubuntu box and the
>> following fails.
>>
>> from svn import fs, repos, core, delta
>[...]
I have a pain in the a** problem with pyserial- it works 90% of time
but on the 10% of time it thorows and termios.error exception with the
value (5, 'Input/output error') and i cannot get rid of it :(
The system works as follows:
A device sends out rs485 data -> rs485 to rs232 converter converts i
Hi friends,
I am writing a new language.
So I want an editor with auto complete.
I there any such tool in Python ?(not only in python any other)
I want it for my new lang
help me
Thanks
siva
--
http://mail.python.org/mailman/listinfo/python-list
Hi all,
I wrote a program to read some data through standard input and write in a
file.
the following code works fine in linux.
but its giving ArgumentError in windows.
Code:
import sys
orig_source = sys.stdin.read()
file=open('data.txt','w')
file.write(orig_source)
file.close()
please post s
t 11:54 AM, Chris Rebert wrote:
> On Fri, Dec 4, 2009 at 9:37 PM, Siva B wrote:
> > Hi all,
> >
> > I wrote a program to read some data through standard input and write in a
> > file.
> > the following code works fine in linux.
> > but its giving ArgumentErro
open source.)
I have seen Komodo edit but it looks too big
any help plz.
Regards,
Siva
On Fri, Dec 4, 2009 at 8:04 PM, Gerhard Häring wrote:
> Siva B wrote:
> > Hi friends,
> >
> > I am writing a new language.
> > So I want an editor with auto complete.
> >
gt;>
> >> On Fri, Dec 4, 2009 at 9:37 PM, Siva B wrote:
> >> > Hi all,
> >> >
> >> > I wrote a program to read some data through standard input and write
> in
> >> > a
> >> > file.
> >> > the following code work
n "console" windows
using TK or something?
Thanks in advance,
Blake B
--
http://mail.python.org/mailman/listinfo/python-list
Hi everyone,
I'm currently coding a C library which provides several modules and
objects.
Let's say that some of these objects are classes called AAA and BBB.
The constructor of AAA needs to get BBB as argument.
So I can run the following code :
from mymodule import AAA
from mymodule import BBB
>
> What is the behaviour of the __init__.py file?
>
Not yet used, but I read this file is run by Python when a module of a
package is imported.
So you can insert default importations in it.
--
http://mail.python.org/mailman/listinfo/python-list
At first, thank you all for your answers.
Some more details about what I'm coding and what I need...
The classes AAA and BBB are just given as examples. In fact, BBB's
constructor accepts several parameters, meaning it can be different
for each creation of AAA. So it can't be simply skipped from
> In that particular case, replace automatic by implicit, and you got the
> reason why it is not a good idea.
> Maybe in your case the C habits clashes to the python habits.
>
You're right !
As a C developer, I appreciate to only include to deal with
strings, without wondering which other heade
> From: edream...@gmail.com
> Subject: Leo 4.8 rc1 released
> Date: Mon, 15 Nov 2010 09:06:01 -0800
> To: python-list@python.org
>
> Leo 4.8 release candidate 1 is now available at:
> http://sourceforge.net/project/showfiles.php?group_id=3458&package_id=29106
>
> Leo is a text editor, data org
Hi.
I'm learning python. python 2.6.6 on ubuntu 10.10 I'm swedish so I try to use
unicode to get swedish characters. I've checked wikipedia.
utf-8 is said to be an unicode encoding..
this is the test program:
# -*- coding: utf-8 -*-
import readline
s=raw_input(u'Månadslön:')
and this is the
Date: Sat, 20 Nov 2010 08:47:18 +0100
From: stefan.sonnenb...@pythonmeister.com
To: mba...@live.se
CC: python-list@python.org
Subject: Re: try to use unicode
Meddelandetext
Am 20.11.2010 06:53, schrieb Mikael B:
Hi.
I'm learning p
Meddelandetext
Am 20.11.2010 06:53, schrieb Mikael B:
Hi.
I'm learning python. python 2.6.6 on ubuntu 10.10 I'm swedish so I
try to use
unicode to get swedish characters. I've checked wikipedia.
utf-8 is said t
> >
> > if __name__ == "__main__":
> > main()
What does this mean?
/Mikael
--
http://mail.python.org/mailman/listinfo/python-list
Dear Partners
I have Keerthi, SAS Developer available immediately for your client
requirements. Has worked for AccessPharmaceuticalsInc, ICON Clinical
Research, Amarillo Biosciences. She is in NC right now and is willing
to relocate in NC. Please let me know if you have any direct client
position
Dear Partners
I have Raja Rao, Oracle Apps Technical consultant available
immediately for your client requirements. Has worked for Tekelec,
Hitachi Data Systems etc. He is in NC right now and is willing to
relocate. Pl. let me know if you have any direct client positions for
him.
Location: NC
Re
2010 17:20:57 -0700 (PDT)
> In-Reply-To: <4beec709$0$18653$4fafb...@reader3.news.tin.it>
> References:
>
> <4beec709$0$18653$4fafb...@reader3.news.tin.it>
> Date: Sat, 15 May 2010 19:20:57 -0500
> Message-ID:
> Subject: Re: parsing XML
> From: Jake b
For sound ( not internal beep ) you can check out:
- pygame: http://www.pygame.org/project-PygSoundTestTest-1453-.html
- python.org/sound : http://wiki.python.org/moin/PythonInMusic
- pk http://trac2.assembla.com/pkaudio/
- pureData http://puredata.info/Members/thomas/py
--
Jake
--
I'm trying to figure out the best way to view python snippets /
smaller files on the itouch/iPhone.
I'm reading a new projects docs, but it's not easy to view the zip.
It can't view zip files. Say I want to read pyglet examples, I need
unzip at least one file and serve that. If it is text/HTML/py
did this not go to the list? Arg, reply does in other mailing list.
On Fri, May 21, 2010 at 5:48 AM, Jake b wrote:
> I took it as game-domain only question:
> I don't know of any big game written in python. ( meaning python code,
> using c++ libs. ) Verses games that at
Networking can be hard. I'd suggest checking out these libs.
pygame mastermind:
http://www.pygame.org/project-Mastermind+Networking+Lib-859-1773.html
podSixNet : http://mccormick.cx/projects/PodSixNet/
twisted: http://wiki.python.org/moin/Twisted-Examples
lots of references in the answers to this
101 - 200 of 4334 matches
Mail list logo