Python is a dynamically and strongly typed programming language whose design philosophy emphasizes code readability. Two significantly different versions of Python (2 and 3) are in use. Please mention the version that you are using when asking a question about Python.

learn more… | top users | synonyms (2) | python jobs

0
votes
2answers
52 views
+50

nginx, uwsgi and python - uwsgi service is not starting

I have python application (concrete Django) running on my server. Before yesterday, it was successfully running under apache with mod-wsgi with almost no problem. I had two main reason to switch to ...
7
votes
2answers
235 views
+50

How can I train a Genetic Programming algorithm onto a variable sequence of descriptors?

I am currently trying to design a Genetic Programming algorithm that analyses a sequence of characters and assigns a value to those characters. Below I have made up an example set. Every line ...
5
votes
1answer
152 views
+200

Saving a stream while playing it using LibVLC

Using LibVLC, I'm trying to save a stream while playing it. This is the python code: import os import sys import vlc if __name__ == '__main__': filepath = <either-some-url-or-local-path> ...
1
vote
0answers
100 views
+50

PySide / Qt : Too many arguments to connect a signal to a slot?

I'm trying to connect a custom signal (in a TCP client class) to a method that updates a log with the data sent by the server and whatnot. Here's the declaration of the TCP client class: class ...
1
vote
5answers
226 views
+50

Django Class Based Views, get_absolute_url not working

I bought and am Reading the Book Two Scoops of Django:Best Practices for Django 1.5 and in it has a example of Class based views. After this implementation I get the error after submitting the form. ...
1
vote
1answer
52 views
+50

Using python to login to a webpage using a cgi script

Logging into web servers is not my area of expertise, and I am looking to automate a task of logging into a web server, but I am not sure how I need to format my code to achieve this goal. I have ...
1
vote
1answer
44 views
+50

Access token from my app doesn't work when i try to use it in a fql

I am using fql(mentioned below) to retrieve friends checkins,when i try my query on graph explorer it works fine and gives the required results so this means that there is no problem with the my query ...
1
vote
0answers
60 views
+150

Sphinx document module properties

I have a module that should have a @property, I solved this by setting a class as the module. I got the idea from this answer: Lazy module variables--can it be done? I wanted this to be repeatable ...
0
votes
1answer
41 views
+50

imaplib2 : imap.gmail.com handler BYE response: System error

I'm renovating a python script that checks IMAP for new emails and sends a push notification if there's a new email. The problem is that every few hours I'm getting a crash. At first I couldn't really ...
2
votes
0answers
30 views
+50

Python package: how to avoid redefining author version etc?

I would like to distribute a Python package (I would like to use setuptools and I already have a working setup.py file), and the related documentation (produced using Sphinx). I find myself a bit ...
3
votes
1answer
46 views
+100

Parsing Python function calls to get argument positions

I want code that can analyze a function call like this: whatever(foo, baz(), 'puppet', 24+2, meow=3, *meowargs, **meowargs) And return the positions of each and every argument, in this case foo, ...