PyList_Append requires explicit Py_INCREF after?
(I didn't see in docs where it said if appends a new reference
or a borrowed reference like other APIs.)
thanks!
Chris
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> PyList_Append requires explicit Py_INCREF after?
>
> (I didn't see in docs where it said if appends a new reference
> or a borrowed reference like other APIs.)
if successful, PyList_Append(seq, item) increments the reference count
for item.
--
http://mail.python.o
Hi,
The program downloads the files from the internet and compresses them
to a single zip archive using compress_the_file().
Upon running syncer() which calls the decompress_the_file(), the first
iteration succeeds. But upon second iteration, I get an IOError
exception with the message:
"compress
bruce <[EMAIL PROTECTED]> wrote:
> i need a multi dimensional array of lists...
>
> ie
>[q,a,d]
>[q1,a1,d1]
>[q2,a2,d2]
>[q3,a3,d3]
>
> which would be a (3,4) array...
Multi-dimensional arrays aren't a built in feature of python.
You can simulate them two ways
1) with a li
In article <[EMAIL PROTECTED]>,
"Mark Dufour" <[EMAIL PROTECTED]> wrote:
>interestingly, leaving out the fcntl stuff makes it work much faster.
No surprises there...
--
http://mail.python.org/mailman/listinfo/python-list
Hi All,
Thanks for the advise. Am trying to play around with InfoCon, part of
from Dspace project. It does file conversions. But it is written in
java and uses open office plugin.
Regards,
Gaurav Agarwal
BartlebyScrivener wrote:
> I suspect you will have to process those formats separately. But
[EMAIL PROTECTED] wrote:
> Situation is this:
> 1) I have inherited some python code that accepts a string object, the
> contents of which is an XML document, and produces a data structure
> that represents some of the content of the XML document
> 2) The inherited code is somewhat 'brittle' in th
bruce wrote:
> basic question..
which means that it can usually be answered by reading the tutorial, the
FAQ, or by googling for "python" plus your subject line...
> how do i define a multi dimensional array
>
> a[10][10]
>
> is there a kind of a = array(10,10)
http://pyfaq.infogami.com/how
Mike Kent wrote:
> Roman wrote:
> > Thanks for your help
> >
> > My intention is to create matrix based on parsed csv file. So, I would
> > like to have a list of columns (which are also lists).
> >
> > I have made the following changes and it still doesn't work.
> >
> >
> > cnt = 0
> > p=[[], []
> Thanks, that's awesome! Definitely not something I'd have ever been able
> to work out myself - I think I need to learn more about nested functions
> and introspection.
I've recently found nested functions incredibly useful in many places
in my code, particularly as a way of producing functions
Mike Kent wrote:
(snip)
> p[j] does not give you a reference to an element inside p.
Yes it does:
>>> a = ['a']
>>> b = ['b']
>>> c = ['c']
>>> p = [a, b, c]
>>> p[0] is a
True
>>> p[1] is b
True
>>> p[2] is c
True
>>> p[0].append('z')
>>> a
['a', 'z']
>>>
> It gives
> you a new sublist contain
gel wrote:
> gel wrote:
>
>
>>Hi
>>I would like to pass a variable in and use it as part of a name of an
>>object, something like below, where I pass the variable software into
>>the function and use it as part of the name of the object so that I can
>>append to it using the other vairables. Any
In <[EMAIL PROTECTED]>, Ritesh Raj
Sarraf wrote:
I have some remarks on exception handling.
> 1) compress_the_file() - This function takes files as an argument to it
> and put all of them into a zip archive
>
> def compress_the_file(zip_file_name, files_to_compress, sSourceDir):
> '''Condens
Steven D'Aprano wrote:
> On Tue, 04 Jul 2006 19:26:36 +0200, Bruno Desthuilliers wrote:
>
>
>>Steven D'Aprano wrote:
>>
>>>I'm having problems with sub-classes of built-in types.
>>>
>>>Here is a contrived example of my subclass. It isn't supposed
>>>to be practical, useful code, but it illustrat
Continuing my monologe;)
Mathias Waack wrote:
> I've embedded python into a legacy application. It works - most of the
> time. In some special situations the app crashes executing the "import
> random". There are two different situations:
>
> 1. the sources compiled with gcc 4.1.2 crash with ille
"Mathias Waack" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> BTW, does anybody know why the c-lib offers both log and log1p?
So you can get a sensible answer computing log(1 + 10 ^ -30). There's
a lot of somewhat obscure mathematical stuff that got into the standard
C lib. How
Richard Brodie wrote:
> "Mathias Waack" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
>> BTW, does anybody know why the c-lib offers both log and log1p?
>
> So you can get a sensible answer computing log(1 + 10 ^ -30).
Ok, that make sense to me.
> There's
> a lot of somewha
In article <[EMAIL PROTECTED]>,
Mathias Waack <[EMAIL PROTECTED]> writes:
|>
|> > There's
|> > a lot of somewhat obscure mathematical stuff that got into the standard
|> > C lib. How often do you need Bessel functions?
|>
|> Maybe each day. What is a Bessel function?;)
Some people use them all
Hello, I am completely new to Python, would u please tell me something
about Python compiler traversing techniques ? or please direct me to
some document if available on the net for reference ?
Thanks
--
http://mail.python.org/mailman/listinfo/python-list
hello ppl,
Consider a list like ['a.1','b.3','b.4','c.2']. Here 'a','b','c' are
objects and 1,3,4,2 are their instance ids and they are unique e.g. a.1
and b.1 cannot exist together. From this list i want to generate
multiple lists such that each list must have one and only one instance
of every
> * Need to convert rfc8222 to xml/html
>
> I haven't found anything substantial via searching. My next step is to
> go spelunking in MailManager code and other python-webmail packages. If
> anyone knows good trees in this forest, please clue me in.
>
Do you mean 2822? or 822? 8222 doesn't exist
Hi, I try to learn gettext and python. This is the simple program
#simplehello.py
import locale
import gettext
APP = 'simplehello'
DIR = 'locale'
locale.setlocale(locale.LC_ALL, '')
gettext.bindtextdomain(APP, DIR)
gettext.textdomain(APP)
_ = gettext.gettext
print _('Hello World')
After that I d
Martin v. Löwis wrote:
> Filipe wrote:
> > term = row[1]
> > print repr(term)
> >
> > output I got in Pyscripter's interpreter window:
> > 'Fran\x87a'
> >
> > output I got in the command line:
> > 'Fran\xd8a'
> >
> > I'd expect "print" to behave differently according with the console's
> > encoding
The only use I now for them is when you need to plot the sine of a sine.
Or possibly to calculate the frequency spectrum of this.
Ie
x = a.sin( b.sin( y ) )
This is fundamental to Frequency Modulation.
I don't know if they apply anywhere else ?
Unhelpfully,
Richard.
-Original Message-
I am trying to run a subprocess within given time and memory restrictions.
The resource module kind of works for me, but I do not understand why and am
seeking an
explanation. Also, the signal module is not behaving as I'd expect it to.
Demo code with questions:
==
import subprocess as
Namenick wrote:
> Hello, I am completely new to Python, would u please tell me something
> about Python compiler traversing techniques ? or please direct me to
> some document if available on the net for reference ?
"compiler traversing techniques" generates zero google hits, so maybe
you could
[EMAIL PROTECTED] wrote:
> c) If I want to leave the xmlns information in the string that gets fed
> to ElementTree.XML, and I want to remove the {whatever} from the tag
> before building the data structure, what is the best way to find
> {whatever} from the tag property...is this another case whe
Roman wrote:
> Dennis Lee Bieber wrote:
> > On 4 Jul 2006 07:01:55 -0700, "Roman" <[EMAIL PROTECTED]> declaimed
> > the following in comp.lang.python:
> >
> > > I would appreciate it if somebody could tell me where I went wrong in
> > > the following snipet:
> > >
> > It would help if you gave
Sorry, yet another REGEX question. I've been struggling with trying to get
a regular expression to do the following example in Python:
Search and replace all instances of "sleeping" with "dead".
This parrot is sleeping. Really, it is sleeping.
to
This parrot is dead. Really, it is dead.
But n
Hi,
I want to give a tuple to a function where the function
expects the respective tuple-size number of arguments.
The following session illustrates what I want to do and
the respective failure.
Python 2.4.1 (#7, Aug 3 2005, 14:55:58)
[GCC 3.3.1 (SuSE Linux)] on linux2
Type "help", "copyrig
I would like to use SQLDict against a MS SQL server database, but got stuck
at the very beginning
import pymssql
import SQLDict
# Connect to database
c=pymssql.connect('192.168.1.13:dblisamaster:sa')
db = SQLDict.SQLDict(c)
class VAT(SQLDict.ObjectBuilder):
table = 'TBLVat'
colu
Marco Wahl wrote:
> Hi,
>
> I want to give a tuple to a function where the function
> expects the respective tuple-size number of arguments.
...
> One way to do what I want is--of course--to call
> foo(t[0], t[1]). My actual question is if there is a
> smarter way to do it.
Yes, just this:
foo
On Wed, 05 Jul 2006 14:01:27 +0200, Marco Wahl wrote:
> Hi,
>
> I want to give a tuple to a function where the function
> expects the respective tuple-size number of arguments.
>
> The following session illustrates what I want to do and
> the respective failure.
>
> Python 2.4.1 (#7, Aug 3 20
On Tue, 04 Jul 2006 16:41:38 -0700, Alex Martelli wrote:
> As others already suggested, automating such decoration is pretty easy;
> you can do it with either a custom metaclass or a simple post-processing
> of your class in a loop. Untested details below, but the general idea
> would be somethin
>Namenick wrote:
>
>> Hello, I am completely new to Python, would u please tell me something
>> about Python compiler traversing techniques ? or please direct me to
>> some document if available on the net for reference ?
>
>"compiler traversing techniques" generates zero google hits, so maybe
>y
On Wed, 05 Jul 2006 11:41:47 +0200, Bruno Desthuilliers wrote:
> Steven D'Aprano wrote:
>> On Tue, 04 Jul 2006 19:26:36 +0200, Bruno Desthuilliers wrote:
>>
>>
>>>Steven D'Aprano wrote:
>>>
I'm having problems with sub-classes of built-in types.
Here is a contrived example of my sub
> Marco Wahl enlightened us with:
> > >>> foo(t)
> > Traceback (most recent call last):
> >File "", line 1, in ?
> > TypeError: foo() takes exactly 2 arguments (1 given)
>
> Call foo(*t)
Thank you very much Luke Plant, Steven D'Aprano and Sybren Stuvel.
This was exactly what I was looking
Hello Everybody!
I am writing a networking application in python for a small piece of
hardware, in which there could sometimes be timeouts. I am using
sockets to communicate to this device. Data that is sent to the device
is instructions for that piece of hardware, and data recieved is just
res
On 2006-07-04, Diez B. Roggisch <[EMAIL PROTECTED]> wrote:
> Tim N. van der Leeuw wrote:
>
>> Hi,
>>
>> The following might be documented somewhere, but it hit me unexpectedly
>> and I couldn't exactly find this in the manual either.
>>
>> Problem is, that I cannot use augmented assignment operat
Antoon Pardon wrote:
(snip)
> Well no matter what explanation you give to it, and I understand how it
> works,
I'm not sure of this.
> I keep finding it strange that something like
>
> k = [0]
> def f(i):
> k[0] += i
> f(2)
>
> works but the following doesn't
>
> k = 0
> def f(i)
hi...
i'm trying to deal with multi-dimension lists/arrays
i'd like to define a multi-dimension string list, and then manipulate the
list as i need... primarily to add lists/information to the 'list/array' and
to compare the existing list information to new lists
i'm not sure if i need to import
Marco Wahl wrote:
>>Marco Wahl enlightened us with:
>>
>>foo(t)
>>>
>>> Traceback (most recent call last):
>>> File "", line 1, in ?
>>> TypeError: foo() takes exactly 2 arguments (1 given)
>>
>>Call foo(*t)
>
>
> Thank you very much Luke Plant, Steven D'Aprano and Sybren Stuvel.
>
> This
Kiran i'rta:
> Hello Everybody!
> I am writing a networking application in python for a small piece of
> hardware, in which there could sometimes be timeouts. I am using
> sockets to communicate to this device. Data that is sent to the device
> is instructions for that piece of hardware, and da
bruce wrote:
> the docs state that the following is valid...
> print "i = "i
Is this a typo or is that really in the docs?
--
http://mail.python.org/mailman/listinfo/python-list
>From this interesting blog entry by Lawrence Oluyede:
http://www.oluyede.org/blog/2006/07/05/europython-day-2/
and the Py3.0 PEPs, I think the people working on Py3.0 are doing a
good job, I am not expert enough (so I don't post this on the Py3.0
mailing list), but I agree with most of the things
bruce wrote:
> hi...
>
> i'm trying to deal with multi-dimension lists/arrays
Python has lists (which AFAIK really are arrays not linked lists, but
they are called 'lists'). FWIW, this is in the fine manual.
> i'd like to define a multi-dimension string list, and then manipulate the
> list as i
bruce:
> is there a way for me to do this..
>
> print "hello"
> foo()
>
> def foo():
> i = 2
> print "i = "i
>
> ie, to use 'foo' prior to the declaration of 'foo'
Generally no you can't, you have to define a name before using it.
Why do you want to do that?
Bye,
bearophile
--
http://mail.pyt
Bruno Desthuilliers wrote:
> It's not about "finding a name/identifier", it's about the difference
> between (re)binding a name and mutating an object.
the difference between binding and performing an operation on an object
(mutating or not), in fact.
this is Python 101.
--
http://mail.pyth
In article <[EMAIL PROTECTED]>,
Kiran <[EMAIL PROTECTED]> wrote:
>Hello Everybody!
> I am writing a networking application in python for a small piece of
>hardware, in which there could sometimes be timeouts. I am using
>sockets to communicate to this device. Data that is sent to the device
>is
On 2006-07-05, Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
> Antoon Pardon wrote:
> (snip)
>> Well no matter what explanation you give to it, and I understand how it
>> works,
>
> I'm not sure of this.
Should I care about that?
>> I keep finding it strange that something like
>>
>> k = [0]
Ant <[EMAIL PROTECTED]> wrote:
> > Thanks, that's awesome! Definitely not something I'd have ever been able
> > to work out myself - I think I need to learn more about nested functions
> > and introspection.
>
> I've recently found nested functions incredibly useful in many places
> in my code, p
I had some code that used to work that now doesn't. It's an embedded
Python interpreter that uses numpy internally. The code calls
"import_array()", which now fails (and generates a "ImportError: No
module named _numpy" error).
This is on the latest OS X 10.4 release. I have Numeric installed i
Sybren Stuvel wrote:
> Bruno Desthuilliers enlightened us with:
>> Python has lists (which AFAIK really are arrays not linked lists,
>> but they are called 'lists').
>
> An array is generally understood as a list of items of the same type,
> hence Python lists aren't arrays.
Only in the same sen
Hello,
I have some very serious trouble getting cookes to work. After a lot
of work (urllib2 is severly underdocumented, arcane and overengineerd
btw) I'm finally able to accept cookes from a server. But I'm still
unable to return them to a server. Specifically the script im trying
to do logs on t
Antoon Pardon wrote:
> Python could have chosen an approach with a "nested" keyword
sure, and Python could also have been invented by aliens, powered by
space potatoes, and been illegal to inhale in Belgium.
have any of your "my mental model of how Python works is more important
than how it ac
Sybren Stuvel <[EMAIL PROTECTED]> wrote:
> Bruno Desthuilliers enlightened us with:
> > Python has lists (which AFAIK really are arrays not linked lists,
> > but they are called 'lists').
>
> An array is generally understood as a list of items of the same type,
> hence Python lists aren't arrays.
On Tue, 2006-07-04 at 15:44 -0400, emf wrote:
> In order to provide interfaces to archives, I believe I must perform
> some intermediary manipulation; my goal is to get the information
> contained within the .mbox files mailman generates into ElementTrees and
> other objects so as to represent t
I have some ideas about a ORM design, but have no time to start its
development.
I used SQLObject, Django's Model, and looked at SQLAlchemy and Dejavu,
an readed some thread in the last year or so.
Here is an example:
#from EnhancedOcject.all import *
from EnhancedObject.core import EObject, EType
Ops, sorry about my ugly english.
> I have some ideas about an ORM design, but have no time to start its
> development.
> I used SQLObject, Django's Model, and looked at SQLAlchemy and Dejavu,
> and readed some threads in the last year or so.
--
http://mail.python.org/mailman/listinfo/python-list
Sybren Stuvel:
> But you can put a set in a dict...
Only as values, not as keys, because sets are mutable.
Bye,
bearophile
--
http://mail.python.org/mailman/listinfo/python-list
> Antoon Pardon <[EMAIL PROTECTED]> (AP) wrote:
>AP> On 2006-07-05, Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
>>> Antoon Pardon wrote:
>>> (snip)
Well no matter what explanation you give to it, and I understand how it
works,
>>>
>>> I'm not sure of this.
>AP> Should I care abo
Did u get the answer to that question???
To find out more about Reuters visit www.about.reuters.com
Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Reuters Ltd.
--
http://mail.python.org/m
Hi,
I'm new to using python and SWIG. I am running Mac OS X 10.4. I have
a C++ class which I want to access from python, however I am unable
to compile it as a shared module in Mac OS X.
I have tried using Distutils and have successfully created a C
extension module, however I am unable to
[EMAIL PROTECTED] wrote:
> I have some ideas about a ORM design,
> but have no time to start its development.
So why tell us? What are your ideas? What does your design do that the
others don't?
Robert Brewer
System Architect
Amor Ministries
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/
Sybren Stuvel wrote:
> Bruno Desthuilliers enlightened us with:
>
>>Python has lists (which AFAIK really are arrays not linked lists,
>>but they are called 'lists').
>
>
> An array is generally understood as a list of items of the same type,
> hence Python lists aren't arrays.
A list is general
[EMAIL PROTECTED] wrote:
> I have some ideas about a ORM design, but have no time to start its
> development.
> I used SQLObject, Django's Model, and looked at SQLAlchemy and Dejavu,
> an readed some thread in the last year or so.
Wouldn't it be better to try and make the relationel model directly
Hi all,
I try to implement a python xml-rpc server and call it from a php
client. If the server and the client are on the same machine
(localhost) the communication between them is just fine. When I start
the server on a different host I don't get an answer.
What is missing there?? I tried also to
Stefka írta:
> Hi all,
>
> I try to implement a python xml-rpc server and call it from a php
> client. If the server and the client are on the same machine
> (localhost) the communication between them is just fine. When I start
> the server on a different host I don't get an answer.
>
Please go
I've been doing an application with Tkinter widgets. Nothing really
fancy just routine stuff. Though I have no problems with it by now I
guess it would be reasonable to ask about a thing that's been bothering
me a bit. Look at this piece of code:
class A(object):
def a(self):
return "a
Hi all,
I have a problem with putting a job in the background. Here is my
(ugly) script which I am having problems getting to background. There
are threads about doing
python script.py &
and others
nohup python script.py &
and yet others
( python script.py > /dev/null & ) &
R
On 2006-07-05, rh0dium <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have a problem with putting a job in the background. Here is my
> (ugly) script which I am having problems getting to background. There
> are threads about doing
>
> python script.py &
>
> and others
>
> nohup python scrip
I'm currently implementing an XML-RPC service in Python where binary
data is sent to the server via URLs. However, some clients that need
to access the server may not have access to a web server, and I need to
find a solution. I came up with the idea of embedding a simple HTTP
server in the XML-R
madpython wrote:
> What is another way to get data from method of another instance of a
> class? Or maybe print globals()['c'].__dict__['a'].a() is perfectly
> normal.
I'd say it's a fireable offense.
--
http://mail.python.org/mailman/listinfo/python-list
In <[EMAIL PROTECTED]>, madpython
wrote:
> I've been doing an application with Tkinter widgets. Nothing really
> fancy just routine stuff. Though I have no problems with it by now I
> guess it would be reasonable to ask about a thing that's been bothering
> me a bit. Look at this piece of code:
>
[EMAIL PROTECTED] wrote:
> >From this interesting blog entry by Lawrence Oluyede:
> http://www.oluyede.org/blog/2006/07/05/europython-day-2/
> and the Py3.0 PEPs, I think the people working on Py3.0 are doing a
> good job, I am not expert enough (so I don't post this on the Py3.0
> mailing list),
Hi, I have an XML file which contains entries of the form:
1
2
1
Currently, I have written a SAX based handler that will read in all the
entries and return a list of the contents of these
entries. However this is not scalable and for my purposes it would be
better if I could iterat
In article <[EMAIL PROTECTED]>, rh0dium wrote:
> if os.fork() == 0:
> os.setsid
> sys.stdout = open("/dev/null", 'w')
> sys.stdin = open("/dev/null", 'r')
I don't know if it's the cause of your problem, but you're not doing
the backgrounding right, it should be:
if o
Tim Roberts wrote:
> "Xah Lee" <[EMAIL PROTECTED]> wrote:
>
>> Languages with Full Unicode Support
>>
>> As far as i know, Java and JavaScript are languages with full, complete
>> unicode support. That is, they allow names to be defined using unicode.
>> (the JavaScript engine used by FireFox supp
[EMAIL PROTECTED] wrote:
> Hi, I have an XML file which contains entries of the form:
>
>
> 1
> 2
>
> 1
>
>
> Currently, I have written a SAX based handler that will read in all the
> entries and return a list of the contents of these
> entries. However this is not scalable and fo
Dennis Lee Bieber wrote:
> On 5 Jul 2006 04:37:46 -0700, "Gerard Flanagan" <[EMAIL PROTECTED]>
> declaimed the following in comp.lang.python:
>
>
> >
> > You can use a class rather than have lists of lists:
> >
> Are you sure you want to introduce classes into the mix, when simple
> basics a
# first step : build a dictionary mapping the objects
# to all possible ids
alist = ['a.1','b.3','b.4','c.2','c.6','d.3']
elts = {}
for item in alist:
obj=item.split('.')[0]
if elts.has_key(obj):
elts[obj].append(item)
else:
elts[obj] = [item]
# then build the Python c
Kay Schluehr:
> there is nothing really new or interesting or challenging.
> Micro-optimizations and shape lifting.
I see. Maybe Python is becoming a commodity used by more than 10e6
persons, so changellenges aren't much fit anymore.
Guido has tried to avoid the problems of Perl6, making Py3.0 a
i
jbrewer wrote:
> I'm currently implementing an XML-RPC service in Python where binary
> data is sent to the server via URLs. However, some clients that need
> to access the server may not have access to a web server, and I need to
> find a solution. I came up with the idea of embedding a simple
rh0dium <[EMAIL PROTECTED]> wrote:
> I have a problem with putting a job in the background. Here is my
> (ugly) script which I am having problems getting to background. There
> are threads about doing
>
> python script.py &
>
> and others
>
> nohup python script.py &
>
> and y
madpython a écrit :
> I've been doing an application with Tkinter widgets. Nothing really
> fancy just routine stuff. Though I have no problems with it by now I
> guess it would be reasonable to ask about a thing that's been bothering
> me a bit. Look at this piece of code:
>
> class A(object):
>
Martin Evans wrote:
> Sorry, yet another REGEX question. I've been struggling with trying to get
> a regular expression to do the following example in Python:
>
> Search and replace all instances of "sleeping" with "dead".
>
> This parrot is sleeping. Really, it is sleeping.
> to
> This parrot is
Filipe wrote:
> They do, in fact, output different values. The value outputed by
> pyscripter was "135" (x87) while the value outputed in the command line
> was "216" (xd8). I can't understand why though, because the script
> being run is precisely the same on both environments.
That's indeed surp
Hi,
thanx for the hint :)! I ran a port scan and it turned out, that the
port was realy closed.
Thanx again!
greetz,
Stefka
Laszlo Nagy wrote:
> Please go to the machine where you php program resides, and check if the
> server is not blocked by firewall rules. For example, do
>
> telnet xxx.xxx
Fredrik Lundh wrote:
>why not just use an ordinary HTTP POST request ?
Sorry for such a simple question, but how would I do this? XML-RPC
runs on top of HTTP, so can I do a POST without running a separate HTTP
server?
Jeremy
--
http://mail.python.org/mailman/listinfo/python-list
jbrewer wrote:
> Sorry for such a simple question, but how would I do this? XML-RPC
> runs on top of HTTP, so can I do a POST without running a separate HTTP
> server?
the XML-RPC protocol uses HTTP POST, so if you can handle XML-RPC, you
should be able to handle any POST request. what server
> So why tell us? What are your ideas? What does your design do that the
> others don't?
Basically, the API I exemplificated in the first exemple. My initial
idea was to have a way of turn alread designed objects into persistent
ones. This is not the goal of SQLObject, for example.
Other litle diff
>What server are you using?
Just SimpleXMLRPCServer from the standard library.
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> I have an XML file which contains entries of the form:
>
>
> 1
> 2
>
> 1
>
>
> Currently, I have written a SAX based handler that will read in all the
> entries and return a list of the contents of these
> entries. However this is not scalable and for my
jbrewer wrote:
> Just SimpleXMLRPCServer from the standard library.
which means that you should be able to do something like
from SimpleXMLRPCServer import SimpleXMLRPCServer,\
SimpleXMLRPCRequestHandler
class MyRequestHandler(SimpleXMLRPCRequestHandler):
def do_POST(self):
Stefan Behnel wrote:
> [EMAIL PROTECTED] wrote:
> > I have an XML file which contains entries of the form:
> >
> >
> > 1
> > 2
> >
> > 1
> >
Thanks to everybody for the pointers. ElementTree is what I ended up
using and my looks like this (based on the ElementTree tutorial code):
Marc 'BlackJack' Rintsch wrote:
> In <[EMAIL PROTECTED]>, madpython
> wrote:
>
>
> No it's not the normal way. Why don't you give `c` as argument to the
> `interClassCall()`?
>
> class B(object):
> def interClassCall(self, c):
> print c.a.a()
>
> class C(object):
> def __init__(sel
Fredrik Lundh wrote:
> the XML-RPC protocol uses HTTP POST, so if you can handle XML-RPC, you
> should be able to handle any POST request. what server are you using ?
I need some clarification of your suggestion. Instead of sending URLs,
I could read the file as a string, create a Binary object
Is there a Python module that, given a URL, will grab a screenshot of
the web page it goes to? I'd like to be able to feed such a module a
list of URLs from a file.
Thanks very much.
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
from time to time, people here are asking about the computer algebra
system (cas) in python. I wonder, is there a demand for such a thing?
I would be interested in functionality of at least ginac, but
something, which could easily be extended. Ginac (pyginac or swiginac)
are fine, but it se
OK, I posted my previous message before I saw your reply on how to
handle the server side. On the client side, should I use
httplib.HTTPConnection.request() to upload the data or can I do this
through xmlrpc.ServerProxy objects?
Jeremy
--
http://mail.python.org/mailman/listinfo/python-list
1 - 100 of 161 matches
Mail list logo