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
1answer
11 views

Python: Breadth First Search capable of returning largest distance?

I have a dictionary representing a directed graph. For example... myDict = {'foo': ['hello', 'stack'], 'bar' : ['over', 'flow']} This means that the 'foo' node points to 'hello' and 'stack' while ...
5
votes
1answer
26 views

Why does numpy.r_ use brackets instead of parentheses?

Numpy.r_, .c_ and .s_ are the only Python functions I've come across that take arguments in square brackets rather than parentheses. Why is this the case? Is there something special about these ...
0
votes
0answers
4 views

Python Automate Outlook With Custom Folder- Not Default Folders

I am trying to automate Outlook mail client by retrieving a message with an attachment, using win32com. The message box is a shared folder that is not really underneath root folder inbox, so I had no ...
-1
votes
3answers
27 views

Input And Print In Python

I am making a simple text based game but I can't even get past the second line of code. My code so far looks like this: print("Welcome To City Text! First You Must Name Your City.") Then the ...
0
votes
0answers
10 views

Using python rolling_corr

I have a DataFrame of stock prices for which I am trying to use rolling_cor. The index contains the dates. I have gotten this to work: Stocks=pd.read_csv('StockPrices.csv', parse_dates=True, ...
1
vote
1answer
16 views

What is the easiest way to get current GMT time in Unix timestamp format?

Python provides different packages (datetime, time, calendar) as can be seen here in order to deal with time. I made a big mistake by using the following to get current GMT time ...
0
votes
0answers
4 views

Django admin change form load quite slow

One of my Django websites has following database models: In Django App “common”: class Collection(models.Model): name = models.CharField(max_length = 255, unique = True) _short_name = ...
1
vote
0answers
15 views

Undefined reference to `PyString_FromString'

I have this C code: ... [SNIP] ... for(Node = Plugin.Head; Node != NULL; Node = Node->Next) { //Create new python sub-interpreter Node->Interpreter = Py_NewInterpreter(); ...
0
votes
0answers
6 views

PyGTK and Glade 3 - How to get the output of 'print' to TextView

I'm quite new in programming, even in speaking in English.. so I'm just trying to explain my problem here: I'm building a GUI using Glade 3, which need show all output of 'print' in a TextView or ...
-1
votes
2answers
66 views

Why is my Code Printing the same Last Name?

The Code Below I wrote takes input from a sample file which contains First and Last names. Then it converts those names to sample emails. For some reason the Script keeps printing the same Last name ...
0
votes
2answers
45 views

Create separate lists for each opened file in 'for' loop

I'm trying to create lists from multiple opened files, having some issues. I need to create two separate lists for each file, right now my code only creates two lists for the last file iterated. ...
0
votes
1answer
12 views

Django Admin Error - unbalanced parenthesis

When I point my browser to localhost:8000/admin, I get error at /admin/ unbalanced parenthesis The code that produces this error: Project - urls.py: urlpatterns = patterns('', ...
0
votes
2answers
6 views

virtualenv isn't installed in PATH on OS X

I have python 2.7.2 installed via homebrew on OS X 10.8.3. I installed virtualenv via pip install virtualenv. When issue the command: virtualenv venv, I get this error: -bash: virtualenv:command not ...
0
votes
0answers
9 views

django reverse not working in django old versions

I am developing in django 1.4 locally and in server i have 1.2.3 in local dev i have this code working fine: urls.py: url(r'^neues_thema/$','home.views.create_question',name="create_question"), ...
0
votes
2answers
25 views

Django - When is a query made?

I want to minimize the number of database queries my application makes, and I am familiarizing myself more with Django's ORM. I am wondering, what are the cases where a query is executed. For ...
0
votes
3answers
16 views

Trouble passing inputs of User-Defined function to other functions and summing returned values

I'm a N00b learning Python. As part of a small project to create a simple calculator I need a function to take two inputs and determine total costs for a trip. At the bottom of this code, I have a ...
1
vote
0answers
14 views

How can i receive events from Skype via D-Bus using python?

(i know this resembles Python and d-bus: How to set up main loop? , but without complete code in the "Answer", i'm unable to figure out where i'm going wrong. it might just be a change in a Skype) ...
1
vote
2answers
12 views

django - catch multiple exceptions

I have this view function: def forum(request): qs = Forum.objects.all() try: f = Forum.objects.filter().order_by('-id')[0] <------------problem return ...
0
votes
1answer
5 views

Dynamically add rows to GTK List PyGObject

I'm trying to add items dynamically detected into a PyGTK listview. I'm using Python 3 and PyGObject. Here are some example lists: ['MomAndKids', 'ddwrt', 'Squirt', 'blurb'] ['WPA1', 'Open', ...
0
votes
1answer
14 views

Show only the n'th ticklabel in a pandas boxplot

I am new to pandas and matplotlib, but not to Python. I have two questions; a primary and a secondary one. Primary: I have a pandas boxplot with FICO score on the x-axis and interest rate on the ...
0
votes
0answers
8 views

Printing a cropped PDF - PyPDF2

I am cropping a PDF, but I am unable to print it properly, so I am assuming that the changes done by PyPdf2 affect the visual output on the screen, but that my printer is not picking them up. What I ...
1
vote
2answers
23 views

Reduce redundant block of text

How do you reduce a redundant piece of text? For example, I have 2 inputs and I need to reduce them to the following outputs Input1: The Toyota is red. The Honda is red. The BMW is red. The ...
0
votes
0answers
15 views

Adding libraries to portable python

So I'm currently using portable python and I need to add the neurolab library. On command line I tried moving to the scripts directory and running easy_install.exe neurolab Then another command ...
1
vote
1answer
16 views

How to format raw string with different expressions inside?

Let's say, we want to catch something with regex, using rawstring to define the pattern, which pattern has repeating elements, and variables inside. And we also want to use the format() string ...
1
vote
1answer
21 views

Python RegEx entire line which starts with given word

I'm trying to create a parser that will scan an entire text for lines that start with either "ACTIE" or "TODO" after which it returns the rest of the line except for the word at the start Example: ...
0
votes
0answers
15 views

python feedparser inconsistent items

I am executing these lines: import feedparser url = 'https://dl.dropboxusercontent.com/u/5724095/TutorialFeed/feed.xml' feed = feedparser.parse(url) items = feed['items'] print ...
0
votes
1answer
12 views

Which platform as a service/infrastructure as a server provider gives the most backend resources for their free tier?

I realize there is quite a difference between IaaS and PaaS, but there is some overlap. I'm particularly interested in getting the most number of "backend" server instances at the free tier (or for ...
0
votes
1answer
33 views

I want to create a jpg resizer in pure python. What are good resources for understanding the jpg format?

From my current understanding, png is relatively easier to decode than bitmap-based formats like jpg in python and is already implemented in python elsewhere. For my own purposes though I need the jpg ...
0
votes
0answers
7 views

Install WebKitGTK on Windows

I'm trying to make a Web Browser with Python but I need to install WebKitGTK and I don't know how exactly I do this, what I have to download and how to install the files I've already downloaded.
0
votes
5answers
63 views

Python string.split doesn't do what I was expecting

I have a string with a bunch of weirdness in it that I'd like to break up into a list: "44":{"1":4.6,"0":1.53,"2":7.2},"53":{"1":4.2,"0":1.4,"2":6.75},"121":{"1":3.2,"0":1.6,"2":6} Ideally, I'd ...
0
votes
2answers
22 views

Pickle Queue objects in python

I have a class that uses a list of Queue objects. I need to pickle this class including the information saved in the queue objects. For example: import Queue import pickle class QueueTest(object): ...
0
votes
0answers
21 views

Trying to sum a Taylor series with Python Multiprocessing

Hi all I made this function that gives the sum of the first n terms of the Taylor expansion for arctan: I'm using mpmath module with this, mpf is the arbitrary precision float type. def ...
-4
votes
0answers
15 views

error in using conceptNet in Python [closed]

I am try ConceptNet for the first time. I installed it but when I tried an example I get the following error: Thank you in advance
0
votes
0answers
16 views

Gimp Python in Batch mode

I am trying to execute a Python piece of code in batch mode to edit an existing Gimp file. Getting the following error batch command experienced an execution error: Error: ( : 1) eval: unbound ...
2
votes
3answers
64 views

How to create a complex type dict object

I am trying to create a dict reading the date from a file for further processing but unable to get the code to work. I am working in python and new to this language. My file data looks like this: ...
0
votes
0answers
11 views

cx_Freeze and Python 3.3

So, I have some Python 3.3 code that I need to make an .exe from on Windows. I discovered the only way to do it is using cx_Freeze. But, I haven't even got further than installation. This question ...
-2
votes
4answers
59 views

Deleting parts of a big string given a list of indexes

Looks like a simple question, but having a string (huge, coming from a big file), how to remove parts of the string between a pair of indexes (actually a list of pairs of indexes) For example ...
3
votes
1answer
31 views

Python: Create another python console window sharing same data

I'm trying to make a debug console window appear (Needs to share data with the script), still having the main console open. The only way I know how to do it is to execute a second script, and share ...
0
votes
1answer
16 views

How to get figure size and fontsize right for PDFs exported from matplotlib?

I need to generate figures that fit into a particular width and use a particular font size, preferably without post-processing the pdf file. On my system, the default GUI backend is 'TkAgg' and the ...
0
votes
0answers
15 views

user management framework for app engine python?

Here are a few user management frameworks I've read about: GAE Sessions Flask Login GAE Init (uses Flask) Beaker GAE Utilities gmemsess suas Is there a library that is widely adopted in the python ...
1
vote
2answers
51 views

For count from 2

Let assume that I have simple code. list = [1,3,4,5,6,7,8] for i, val in enumerate(list): print(val) I would like to start from i=2. How do this in the simplest way? Something like ...
1
vote
0answers
17 views

Using dictionary of dictionaries in django templates not working well

Weighted Directed Graphs are represented as dictionaries of dictionaries in python. Something like this (example): digraph = {'a': {'b':2, 'c':3}, 'b': { 'a':1, 'd',2}} My problem involves passing ...
0
votes
1answer
12 views

Python CSV.. Outputting a CSV file to another CSV file with different number of columns

I have a mass CSV file, that I'd like to do some calculations on several fields and output the result to another CSV file. Let's imagine that I have 12 fields on my file1.csv. Here is my sample code ...
-9
votes
0answers
37 views

BootCamp vs. BootCamp - Products on Display - [closed]

There are about 20-30 Code Bootcamps in the country. JavaScript vs. Ruby on Rails vs. Python Sinatra Rails Python Ruby JavaScript The creation of the final product, how fast, how involved would be ...
1
vote
1answer
16 views

Mongodb bulk insert limit in Python

Is there a limit to the number of documents one can bulk insert with PyMongo? And I don't mean the 16mb limit of document size for MongoDB, but the actual size of the list of documents I wish to ...
0
votes
1answer
15 views

IDLE Tkinter GUI widgets won't open when I run them? (Windows 7)

I'm writing a program that uses the Tkinter widgets (ie. Frame, buttons, labels etc...) and everything works fine on my school computers (python 2.6 running on Ubuntu.), but on my Windows 7 computer ...
0
votes
1answer
11 views

PyQt - running a loop inside GUI

I've got a Python code with some while loop inside, but I don't know how to make it work with my PyQt GUI - I can only run the Qt window or that loop (but then windows doesn't show). Is there any ...
0
votes
0answers
12 views

Python whois library

I have tried first several yielded by google search (pywhois, python-whois). I have also tried python whois github project. All of the above seemed to be pretty "raw" and would require manual ...
0
votes
0answers
13 views

How to select areas from openstreetmap in django?

I would like to build a django webapp. One part of this should allow the user to interactively select geographic areas from a map. The map should come from openstreetmap, and the user should be able ...
1
vote
1answer
18 views

Partial download of file (Just what changed)

I do an url fetch to get info from an online txt file. It's a big file (like 2Mb and counting) that gets modified all the time, automatically. I'm using memcache from Google App Engine to keep the ...

1 2 3 4 5 3813