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
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
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
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
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
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
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
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
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
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
[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.
>
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 *)
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/
"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
14 matches
Mail list logo