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
0answers
8 views

I want to create a jpg resizer in 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
5 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
0answers
6 views

machine learning algorithms for supervised classification of weighted attributes?

Given 2 training data sets that would look like so : This set represents X Attribute | A B C ------------------------- Value | 40 80 90 This set represents Y Attribute | A B ...
0
votes
4answers
38 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
14 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
10 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 ...
-3
votes
0answers
13 views

error in using conceptNet in Python

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
13 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
55 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
8 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 ...
-1
votes
4answers
47 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
24 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
13 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
11 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
44 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
10 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 ...
-8
votes
0answers
29 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
13 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
11 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
10 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
12 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
15 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 ...
0
votes
1answer
15 views

How do I make Google App Engine python SDK Remote API work with local development server when server is bound to specific IP (not localhost)?

Using the remote api (remote_api_shell.py) works fine on the production server. However, it only works on the development server when the development server is serving on localhost. It does not work ...
0
votes
2answers
58 views

Create multiple dictionaries from a single iterator in nested for loops

I have a nested list comprehension which has created a list of six lists of ~29,000 items. I'm trying to parse this list of final data, and create six separate dictionaries from it. Right now the code ...
1
vote
4answers
67 views

Regex: Matching the closest value backwards

Is there a way to match all section names that contains a certain value, as here: section aaa: some values value 5 section bbb: more values value 6 section ccc: some values value 5 ...
1
vote
3answers
26 views

Load A Seperate Codefile in Python

I have two codefiles in python, let's say mainfile.py and seperatecode.py. I would like to run seperatecode.py from within mainfile.py, referencing the specific directory where seperatecode.py is ...
0
votes
0answers
14 views

Python Flask-WTF - use same form template for add and edit operations

I'm just getting started with Flask / Flask-WTF / SQLAlchemy, and most example CRUD code I see shows separate templates for adding / editing. It seems repetitive to have two templates with almost ...
0
votes
1answer
37 views

Running a Python Script Like a Built-in Shell Command

I have gone through the following steps. Made the file executable, Tested that the file could be run with ./script1.py, Added the file's directory to the system $PATH. However, at this point, am I ...
1
vote
1answer
59 views

Python variable value reset out of loop

I have written the following code in a programming exercise: q = lenP[0]*[lenP[1]*[0.]] # empty 2D array for i in range(lenP[0]): for j in range(lenP[1]): hit = (Z == colors[i][j]) ...
0
votes
1answer
32 views

Modifying python's string Formatter

I have a function which takes no arguments and returns a string, which I want to be called using a string format. Here it is, and here's how I've tried to use format: def cabbages(): return ...
1
vote
1answer
40 views

How to replace only particular dots in the string?

How to replace only particular dots in the text string?: string_expample = '123|4.3|123.54|sdflk|hfghjkkf.ffg..t.s..9.7..tg..3..654..2.fd' I need to get only dots that are 1 and between 2 digits( ...
0
votes
1answer
38 views

Sorting a Sublist in a Linked List Python

def sublist(head): current=head #temp=current #If my list is 3->2->1->4->5->6 it goes into an infinite loop while ((current.next is not None) and current.value < ...
1
vote
1answer
22 views

Python; can't invoke listbox

I'm a complete newbie. I started last week with python in which I'm trying to create a functional GUI. This gui will make use of multiple tab's using ttk notebook. However, I'm experiencing a problem ...
0
votes
0answers
24 views

IronPython “Random” module error

I am bussy porting IronPython to Windows Phone 8 sothat I can run Skeinforge and I am almost finished. I can already run scripts and import most modules. My problem is that I am now trying to get the ...
0
votes
1answer
19 views

Download external html content client side, send to django server, send processed data back to client

this is what I want to do. I am a newbie at javascript and django. Please let me know how I can go about doing this: Client clicks button on web page, javascript downloads html content from external ...
1
vote
4answers
46 views

In what order does a dictionary in python store data? [duplicate]

I was wondering in what order does the dictionary in python store key : value pairs. I wrote the following in my python shell but I can't figure out what is the reason for the order it is storing the ...
2
votes
2answers
43 views

Correctly return variable from python module

I'm sure this is absurdly simple but I have been unable to get it working. I want to return the value of x from within my function 'test' in the module 'user_module' to my 'main_program' file: ...
0
votes
2answers
51 views

Regex to find N numbers after some token in python

I have data that ends up in following form: x='214.123123Blar=-22.0546665252602,0.977496828218,0.793335875166,30.98755066254,-0.7838067629 ...
2
votes
4answers
40 views

django - url tag not working

I have this form: <form action="{% url create_question %}" method="post"> and this url.py url(r'^neues_thema/(\w+)/','home.views.create_question',name="create_question"), but I am ...
0
votes
1answer
20 views

python popen unexpected EOF in subprocess

I am trying to pass a passphrase/password into a subprocess, however the subprocess complains that there is an unexpected EOF. In my particular case I am trying to decrypt a hard drive with udisksctl. ...
0
votes
0answers
11 views

retain data in form even after submitting or error in validation

I am currently into python and jinja2 right now. Is there a way to retain the data in the form(with validation) even after submitting it without using session? Because in my case, I have to ...
0
votes
2answers
20 views

XML Error: Not well formed

I got this error that says not well formed and it has to do with xml itself. How do i tell python to ignore a section of the xml file? <?xml version="1.0"?> <solution version="0.1" ...
0
votes
0answers
29 views

Setting desktop wallpaper, using urllib and xml fetching (memory leak)

I got this little script that I'm running: import win32api, win32con, win32gui import time import os from urllib import urlopen from xml.dom.minidom import parse def checkIcon(location, unit): ...
0
votes
0answers
13 views

How to recieved the state of one button on html page and use in python program

I made a web page in html with a button that turns on and off. input type="submit" value="ON" style="color=green" name="IL1ON" input type="submit" value="OFF" style="color=red" ...
0
votes
2answers
60 views

Python reading file that might not exist

What is the best way in python to handle reading a file that may potentially not exist? Currently I have the following: try: with open(filename, "r") as f: return f.read() ...
0
votes
0answers
9 views

Combining fixtures and paramatrization in pytest

Basically I'm trying to do something like this: from pytest import * @fixture() def tmpfile(): return '_test_{0:010}.h5'.format(randint(1, 10**10)) @mark.parametrize('t', 'x', 'r', 'w') def ...
0
votes
0answers
11 views

libev sleep until event is received

Is there a way in libev/pyev to do pyev.Loop.sleep() in a way so that it can be interrupted at any point? Basically I'm looking for a way to do the following: def callback(watcher, revents): ...
4
votes
0answers
37 views

Get the string that is the midpoint between two other strings

Is there a library or code snippet available that can take two strings and return the exact or approximate mid-point string between the two strings? Preferably the code would be in Python. ...

1 2 3 4 5 3813