0
votes
3answers
151 views
Twisted: source IP address for outbound connections
I'm in the process of implementing a service -- written in Python with the Twisted framework, running on Debian GNU/Linux -- that checks the availability of SIP servers. For this I use the OPTIONS …
0
votes
How do i install pyCurl?
As it has been said already, it depends on the platform.
In general, I prefer to use only the Python interpreter itself that is packaged for my OS and install everything else in a …
4
votes
Multidimensional array in Python
If you are OK using sparse arrays, you could use a dict to store your values. Python's dicts allow you to use tuples as keys, as such, you could assign to and access elements of the "sparse array" …
0
votes
python, sqlite and threading
Depending on the application the DB could be a real overhead. If we are talking about volatile data, maybe you could skip the communication via DB completely and share the data between the dat …
1
vote
subprocess.Popen
The problem is that you effectively supply Setup.exe with only one argument. Don't think in terms of the shell, the string you hand over as an argument does not get splitted on spaces anymore, tha …
0
votes
Django Model returning NoneType
I don't know Django, but I assume that some kind of ORM is involved when you do this:
current_product = Product.objects.get(slug=title)
At that point you should al …
3
votes
How do I prevent Python’s urllib(2) from following a redirect
This question was asked before here.
EDIT: If …
4
votes
Parameterised regular expression in Python
Well, as you build a regexp from a string, I see no other way. But you could parameterise the string itself with a dictionary:
d = {'bar': 'a', 'foo': 'b'}
regexp = '%(foo …
0
votes
Recommended Python publish/subscribe/dispatch module ?
The fact alone that PyPubSub seems to be a somewhat chaotically managed project (the Wiki on SF is dead, the website (another Wiki) which is linked on SF is currently broken) would be enough reason …
1
vote
What is “THE” Python book.
I read O'Reilly's Python book and it was quite nice. Then I had a look at Core Python Programming, by Wesley Chun. I found it to be much better …
0
votes
Want procmail to run a custom python script, everytime a new mail shows up
The log excerpt clearly states that your script is ex …
0
votes
Twisted: source IP address for outbound connections
For the sake of completeness I answer my own question:
Make sure you use connect() on the transport before trying to determine the host's source IP address. The following excerpt shows the …
0
votes
Python SIP library
You might want to have a look at Sippy. It's a B2BUA with a complete SIP stack implementation underneath (you could use just that). It's written …
2
votes
What is the best way to crawl a login based sites?
I used mechanize for Python with success for a few things. It's easy to use and supports HTTP authentication, form handling …
3
votes
Automatically pick tags from context using Python
The Natural Language Toolkit offers a broad variety of methods for this kind of stuff. I can't give you hands-on advice as I'm not familiar with t …
