[BangPypers] JOB - Senior Web Developer - Talented Team!

2012-02-22 Thread Rebelmouse
SENIOR WEB DEVELOPER We're a NYC-based incubator working in the social space and are looking for developers who have experience with Python and jQuery to work as part of a global team. The founders and board were part of the critical team that created the HuffingtonPost, We're focused on building a

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Philippe May
I don't think there's a simple library for RTP. Maybe this can help, but it's not a library and they use raw sockets: http://blog.sipvicious.org/ . Twisted (used by shtoom) is good for protocol hacking, has eventually a SIP module which might help, and streaming facilities. See http://twistedmat

Re: [BangPypers] Using subprocess - Extra '0' on the console

2012-02-22 Thread Philippe May
I'm not sure what powershell is, but this might help identifying is that zero or whatever comes from the subprocess and handling it as you wish: {{{ Ret = subprocess.Popen([powershellpath, argslist], stdout=subprocess.PIPE, stderr=subprocess.PIPE) Status = Ret.communicate() stdout = Ret.stdout.re

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Godson Gera
To my knowledge shtoom implementation of RTP is straightforward and is in plain python. Also, I forgot mention this http://code.google.com/p/p2p-sip/ this is also plain python implementation of SIP and RTP. Are you making any softphone ? -- Thanks & Regards, Godson Gera IVR India

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Guru
Thank you Godson, is there any other simple libraries for this. On Wed, Feb 22, 2012 at 3:50 PM, Guru wrote: > RTP = Real time protocol, i want to generate RTP packets. > > > On Wed, Feb 22, 2012 at 3:35 PM, Gora Mohanty wrote: > >> On 22 February 2012 12:26, Guru wrote: >>

Re: [BangPypers] Https and http difference in behaviour urllib2

2012-02-22 Thread Senthil Kumaran
On Wed, Feb 22, 2012 at 6:04 PM, Amit Sethi wrote: > When I pass encoded url using http it again encodes the parameters > whereas in case of https it does not urlencode again It should not happen this way. Both should behave the same for the url that you send.

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Guru
RTP = Real time protocol, i want to generate RTP packets. On Wed, Feb 22, 2012 at 3:35 PM, Gora Mohanty wrote: > On 22 February 2012 12:26, Guru wrote: > > *Hi All,* > > * I wanted to write one small tool to generate different types of > > RTP with different parameters, can anybody sugg

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Godson Gera
On Wed, Feb 22, 2012 at 12:26 PM, Guru wrote: > *Hi All,* > * I wanted to write one small tool to generate different types of > RTP with different parameters, can anybody suggest me from where i have to > start, is there any modules available for this. > * > There is some work done by An

Re: [BangPypers] Https and http difference in behaviour urllib2

2012-02-22 Thread Shekhar Tiwatne
On Wednesday 22 February 2012 03:34 PM, Amit Sethi wrote: Hi all , Can someone explain to me why things are implemented the following in urllib2. Show your code. It's then easier for people who are willing to help. When I pass encoded url using http it again encodes the parameters whereas in ca

Re: [BangPypers] RTP Library in python

2012-02-22 Thread Gora Mohanty
On 22 February 2012 12:26, Guru wrote: > *Hi All,* > *         I wanted to write one small tool to generate different types of > RTP with different parameters, can anybody suggest me from where i have to > start, is there any modules available for this. > * You might wish to explain what RTP stan

[BangPypers] Https and http difference in behaviour urllib2

2012-02-22 Thread Amit Sethi
Hi all , Can someone explain to me why things are implemented the following in urllib2. When I pass encoded url using http it again encodes the parameters whereas in case of https it does not urlencode again so lets say the (http) call is http//:example.com?email=amit%40sethi.comthe request is h