Re: Python API

2013-06-17 Thread python27
On Monday, June 17, 2013 2:38:56 PM UTC+8, Ganesh Pandi wrote: > Hi > > What are all the python api, u used in your python programming, we > used more api but may we forgot those, so i just want to list down the api we > familiar aboutplease add your replies... you s

Re: Python API

2013-06-16 Thread rusi
On Jun 17, 11:38 am, Ganesh Pandi wrote: > Hi >         What are all the python api, u used in your python programming, we > used more api but may we forgot those, so i just want to list down the api we > familiar aboutplease add your replies... Maybe you are referring to th

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread John Machin
On May 12, 11:48 pm, Hrvoje Niksic wrote: > rahul writes: > > Hi Christian, > >   rb_big2str(Big-Integer, base) of ruby returns string *base* >representation > > of big-Integer. now, i am able to find equivalent python API function > > of rb_str2cstr() of ruby. > > That would be PyLong_FromStri

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread Hrvoje Niksic
rahul writes: > Hi Christian, > rb_big2str(Big-Integer, base) of ruby returns string representation > of big-Integer. now, i am able to find equivalent python API function > of rb_str2cstr() of ruby. That would be PyLong_FromString, for the sake of later searches. > so , please help me about

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread rahul
On May 12, 5:25 pm, Christian Heimes wrote: > rahul schrieb: > > > Is functions equivalent to ruby's  rb_big2str() and rb_str2cstr() > > available in Python. > > I had search a lot in google but not able to find that. > > If anybody know than please give me the name of those functions of > > Pytho

Re: Python API Functions equivalent to ruby's rb_big2str() and rb_str2cstr()

2009-05-12 Thread Christian Heimes
rahul schrieb: > Is functions equivalent to ruby's rb_big2str() and rb_str2cstr() > available in Python. > I had search a lot in google but not able to find that. > If anybody know than please give me the name of those functions of > Python. Please don't assume that we know what the Ruby function

Re: Python API to OS X Address Book?

2006-09-25 Thread Diez B. Roggisch
Brendon Towle wrote: > Essentially, I'm looking for a Python equivalent to the ObjectiveC stuff > that can be found at: > > http://developer.apple.com/documentation/UserExperience/Conceptual/AddressBook/index.html > > Google got me that far, but was not particularly helpful past that. > > Any

Re: Python API to manipulate CAB files.

2005-06-23 Thread Thomas Heller
Konstantin Veretennicov <[EMAIL PROTECTED]> writes: > On 6/22/05, Peter Maas <[EMAIL PROTECTED]> wrote: >> Isaac Rodriguez schrieb: >> > Does anyone know of a Python API to manipulate CAB files? > > I guess you'll have to interface with setupapi.dll > (SetupIterateCabinet) via ctypes, or with Micr

Re: Python API to manipulate CAB files.

2005-06-22 Thread Konstantin Veretennicov
On 6/22/05, Peter Maas <[EMAIL PROTECTED]> wrote: > Isaac Rodriguez schrieb: > > Does anyone know of a Python API to manipulate CAB files? I guess you'll have to interface with setupapi.dll (SetupIterateCabinet) via ctypes, or with Microsoft Cabinet utilities via subprocess module. Neither is what

Re: Python API to manipulate CAB files.

2005-06-22 Thread Peter Maas
Isaac Rodriguez schrieb: > Does anyone know of a Python API to manipulate CAB files? If there is a Windows API you can probybly call it from Python using Mark Hammond's Win32 extensions. -- --- Peter Maas, M+R Infosysteme, D-52070

RE: python API wrapper for C++ API

2004-11-30 Thread Mark Doberenz
[mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 1:59 AM To: Mark Doberenz; [EMAIL PROTECTED] Subject: Re: python API wrapper for C++ API "Mark Doberenz" <[EMAIL PROTECTED]> wrote: > I'm fairly new at Python, but I've got a project I really want to do. >

Re: python API wrapper for C++ API

2004-11-30 Thread Philippe C. Martin
Hi, How about first using a C to C++ wrapper: *** #ifdef __cplusplus extern "C" { /* I really dislike this - iwj. */ #endif void * init (void) { return new myobj() } 3D_fun1 (void * p_obj) { My_OBJ * l_obj = (My_OBJ *)

Re: python API wrapper for C++ API

2004-11-30 Thread Fredrik Lundh
Mark Doberenz wrote: > I'm working with a real-time 3D program called Deep Creator, and it has > a C++ API written for it. I'm wondering what it would take to create a > Python wrapper that would allow me to write Python programs that would > call the C++ API. start here: http://www.python.org/

Re: python API wrapper for C++ API

2004-11-30 Thread Josiah Carlson
"Mark Doberenz" <[EMAIL PROTECTED]> wrote: > I'm fairly new at Python, but I've got a project I really want to do. > > I'm working with a real-time 3D program called Deep Creator, and it has > a C++ API written for it. I'm wondering what it would take to create a > Python wrapper that would all