Port of python stdlib to other languages.

2009-01-03 Thread vk
Have there been ports of the Python standard library to other languages? I would imagine using pickle, urllib, and sys in C (with pythonic naming conventions) would be easier than using other libraries to do the same thing. -- http://mail.python.org/mailman/listinfo/python-list

Re: Port of python stdlib to other languages.

2009-01-03 Thread Diez B. Roggisch
vk schrieb: Have there been ports of the Python standard library to other languages? I would imagine using pickle, urllib, and sys in C (with pythonic naming conventions) would be easier than using other libraries to do the same thing. AFAIK not. You could try elmer (found on SF) to expose

Re: Port of python stdlib to other languages.

2009-01-03 Thread vk
AFAIK not. You could try elmer Elmer looks very interesting, but not really what I was getting at. What do you need C for anyway? Or, to put it the other way round - why not expose whatever you need in C as python extension, and write your app in Python? I'm not looking to write a Python app

Re: Port of python stdlib to other languages.

2009-01-03 Thread Mensanator
On Jan 3, 10:15�pm, vk vmi...@gmail.com wrote: AFAIK not. You could try elmer Elmer looks very interesting, but not really what I was getting at. What do you need C for anyway? Or, to put it the other way round - why not expose whatever you need in C as python extension, and write your