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

1
vote
1answer
22 views

Hit Ctrl+C during Enthought Canopy Installation - Now Seg Faults

So I ran the install script on a fresh Ubuntu 13.04 64-bit installation, and then ran ~Canopy/canopy for the first time to set it up, which threw the following error but proceeded to run anyway: ...
0
votes
2answers
64 views

beginner Python class

I currently have this code, that if the ToggleButton is pressed I want it to say ToggleButton was pressed and then state whether the ToggleButton is on or off (it is on by default, if the button ...
-3
votes
0answers
25 views

How to store data from an sql query in a HDF5 file using pytables in python [closed]

I am looking to store large amounts of numerical data from an sql query into a HDF5 file using python. I have just installed pytables after reading that this was the way to go and I have looked for ...
1
vote
2answers
107 views

Python 2.7 is giving me inexplicable “syntax errors”

I wrote a script in python3.3 to sync two directories on windows which worked perfectly; later I wanted to make it an executable, and so I ported it to python 2.7 (cx_freeze gives me "module not ...
0
votes
1answer
37 views

Extracting input from html with POST

I am trying to read in input(string from a file, 2 ints from text fields) from html in Google App Engine and put them into a function. The input section is: self.write('<form action="%s" ...
-1
votes
1answer
47 views

Convert Str to Float in csv

I'm running into a little error where I open up a csv file set up as 10 columns by 100 rows. I want to first convert all the numbers in it from str into floats. Then turn each column of numbers into ...
-1
votes
0answers
29 views

Tuple to CSV in Python [closed]

I have a list of tuples, and I'd like to write them to a csv file. List = ["(u'url1', u'html')", "(u'url2', u'PDF')", "(u'url3', u'php')", "(u'url4', u'jspx')"] I've tried the following, but it ...
0
votes
3answers
35 views

Python: Data Getting

Im trying to find out how to get certain data from a file in the easiest way possible. I have searched all over the internet but can't find anything. I want to be able to do this: File.txt: data1 = ...
0
votes
1answer
16 views

PyDev dont autocomplete variables docstring based

I'm using Eclipse 3.8 with PyDev (lastest in update channel), the doctring is generate but pyDev dont use it def reporthook(self, count, blockSize, totalSize): ''' Comment Example :param ...
0
votes
0answers
12 views

How can i export Aptana color scheme in Eclispe

I a using Aptana Studio inside Eclipse Juno and i have also installed Eclipse color scheme plugin. Now i have set up the Aptana theme with my custom colrs and fonts. Is there any way to export that ...
2
votes
3answers
34 views

Saving the highscore for a python game

I have made a very simple game in python using pygame. The score is based on whatever level the player reached. I have the level as a variable called score. I want to display the top level at the ...
-1
votes
0answers
29 views

Emulating Putty's behaviour in python

Can someone explain, please, how to implement ssh tunneling where local host serves as SOCKS proxy with python and give some source code examples? I've looked on paramiko demo files, however they ...
1
vote
1answer
42 views

Python class adding fractions

I have this class which takes a whole number and a fraction, and adds them together. The problem, however, is that the __add__ function here converts the answer to a __str__ so when I try and print ...
1
vote
1answer
19 views

Google App Engine serving MP3 for Audio Element needs Content-Range Header

So from what I can tell, when a page in Safari requests an MP3 for the Audio element, it will only play once unless it has a Content-Range header. Any ideas how to format a content Range Header ...
1
vote
0answers
22 views

Subprocess Not Working When Called Externally

My torrent client (transmission) has an option to call a shell script when torrents finish downloading. I'm trying to write one that converts files in weird formats into iTunes compatible formats via ...
1
vote
1answer
21 views

Why is cron catching Python's logging events as errors?

I've got a very simple test setup with cron and a Python script that uses the logging module, and cron is behaving oddly when it encounters a logging event. crontab * * * * * ~/test.py >> ...
0
votes
3answers
32 views

python how to transpose lines to column for only 7 rows at a time in file

I am a very novice python user so please pardon if I am violating any user ettiquette. Please help, I have a text file that looks something like this: ID: 000001 Name: John Smith Email: ...
-2
votes
3answers
65 views

Making things happen over time python

I have trying to get a hunger variable to increase by one very three minutes, while I have other code running. Using time.sleep() just stops the entire code. Is there a way to do this? Hunger=1 If ...
0
votes
1answer
20 views

Template variable translation

I am having issues in having a value coming from a model translated. Here's what I have: model.py: TICKET_STATUSES = ( ('NEW', _("New")), ('OPEN', _("Open")), ('PENDING', _("Pending")), ...
1
vote
2answers
40 views

adding fractions class python

I have this portion of a class that takes a whole number and a fraction and add them together. def __add__(self, g): whole_add=self.whole_number + g.whole_number numerator = ...
0
votes
0answers
17 views

mongoengine OperationError LEFT_SUBFIELD only supports Object

I'm writing a python script to populate a mongodb database, my models look like the following: from mongoengine import * from mongoengine.django.auth import User class TrackGroup (Document): ...
1
vote
2answers
21 views

Allow Rsync to read file open by python process without python process failing

I am trying to set up a mail log parser that will pull out specific lines into another file, which will then get rsync'd to a remote server. The problem I am having is that when rsync reads the file ...
1
vote
0answers
9 views

Looping through Raster to compute Mean in Cell Statistics

I am attempting to loop through a set of MODIS data to compute averages by period. Since 2000 is missing periods 1 - 3 I am just computing the averages of periods 1 -3 for 2001 through 2012. I am then ...
2
votes
2answers
46 views

Python regex fails when ? involved in repeating group

Trying to match any number of comma separated 7 character strings that can include digits, _ and ?. x = re.compile(r"^([0-9_\?]{7})(,\1)*$") >>> x.match("123456?") <_sre.SRE_Match ...
-3
votes
1answer
43 views

Checking Inf values for multi-dimensional arrays based on user input in Python [duplicate]

The user is asked for which columns to extract from a file that has 60 columns. import numpy as num Choice = str(raw_input('How many columns should this array have (separate by a ","): \t' ...
0
votes
0answers
30 views

Testing Django No Such Table

I'm testing Django running python manage.py runserver --noreload --settings=myapp.test_settings Now the test_settings file has a django.db.backends.sqlite3 DB engine, however, when trying to save a ...
0
votes
1answer
36 views

How do I add a new username and password to a database list in Python?

I am new to Python and I have made this code below. It's just a simple login code that allows you to register or login. Now I am able to login. As you can see I put the usernames and passwords in the ...
0
votes
0answers
10 views

How to inherit from director class in cocos2d

I can make a window by initializing director at the end of my script like this: import cocos as cc if __name__ == '__main__': cc.director.director.init(width, height) However, I want director ...
0
votes
1answer
36 views

pandas resample doesn't work with numpy 1.7

This code worked on my other computer with NumPy 1.6: import pandas as pd from pandas import DataFrame import numpy as np ...
5
votes
4answers
99 views

How can I get Python to automatically create missing key/value pairs in a dictionary? [duplicate]

I'm creating a dictionary structure that is several levels deep. I'm trying to do something like the following: dict = {} dict['a']['b'] = True At the moment the above fails because key 'a' does ...
0
votes
1answer
32 views

running python code, to use sextractor with more than one image file

I have written piece of code which runs sextractor from python, however I only know how to do this for one file, and i need to loop it over 62 files. Im not sure how i would go about doing this. I ...
0
votes
1answer
23 views

Python matplotlib importError in command prompt but not in python shell [duplicate]

Disclaimer: I'm new to python and first post, so I apologize if this isn't formatted correctly or somewhere on the site. I haven't found anything thus far though. I'm using Python 2.7 (32 bit) on ...
0
votes
2answers
25 views

Processing syslog output to csv with python

I need help with taking log events from my siem and processing them into a csv file that can be ingested into hadoop for further processing. Below is sample from the siem and the desired result. I'm ...
0
votes
1answer
26 views

Numpy inverse mask

I want to inverse the true/false value in my numpy masked array. So in the example below i don't want to mask out the second value in the data array, I want to mask out the first and third value. ...
1
vote
6answers
75 views

python expression that evaluates to True n times

I have a function def f(): while True: blah I want to alter f in such a way that the caller could control the number of times the while loop in f runs, without altering much of ...
0
votes
1answer
60 views

Python - len(somelist) returns different value than method in class

I have a class: class something(object): def __init__(self, name=None, someobjects=[]): self.name = name self.someobjects = someobjects And I'd like to be able to get the number ...
0
votes
3answers
112 views

Please explain python 100 >> 5 = 3

I have compiled a list of operators, keywords, etc. and the only one don't understand is >> or << in python. Please explain the math behind >> and <<. Thank you.
0
votes
1answer
31 views

Check items in multidimensionaly array in Python

I have a dynamic multidimensional array, that can have a different number of columns each time. The user is asked to select which columns to extract from a file with N-columns, and based on this ...
0
votes
0answers
43 views

What is the fastest way to compute all eigenvalues of a very big and sparse adjacency matrix in python?

I'm trying to figure out if there is a faster way to compute all the eigenvalues and eigenvectors of a very big and sparse adjacency matrix than using scipy.sparse.linalg.eigsh As far as I know, this ...
0
votes
1answer
19 views

How to programmatically determine whether a column is set to AUTOINCREMENT in SQLite?

Using Python 2.7's sqlite3 library, how do I determine which columns of a table are set to AUTOINCREMENT? I know I can use the SQLite command line utility, but I need to do this within a program. I ...
0
votes
1answer
42 views

Create python dictionary from value of another dictionary?

I am trying to efficiently construct a python dictionary from the keys' values of another dictionary. For example... dict1 = {'foo': [1, 3, 7], 'bar': [2, 4, 8]} ## note: all values in {key: ...
0
votes
0answers
58 views

Writing a simple app using Python [closed]

I am new to python app writing and I would like to write an app in Mac OS using py2app module, but I do not know the specific steps to do it, or if it is possible. Here are the goals for the app: ...
0
votes
0answers
21 views

Are “python decorators” a direct way to implement the decorator design pattern? [duplicate]

I read about Decorator DP on "Python 3 Object Oriented Programming" book and I was a little confused. Although python decorators are not exactly the implementation of the Decorator design pattern, ...
3
votes
3answers
40 views

What dictates the order of data in a dictionary in Python?

What determines the order of items in a dictionary(specifically in Python, though this may apply to other languages)? For example: >>> spam = {'what':4, 'shibby':'cream', 'party':'rock'} ...
1
vote
1answer
21 views

lxml element.clear() with iterator

I am using lxml.iterparse to parse a rather large xml file. At a certain point an out of memory exception is thrown. I am aware of similar questions and that there is a tree built which you should ...
0
votes
0answers
11 views

Generating key press event for a python gedit plugin

I wrote this Gedit 3 plugin (https://github.com/eguaio/gedit-macropy/blob/master/macropy.py) for recording and playing back macros. I was requested to add the functionality of saving the macros for ...
0
votes
2answers
43 views

How can I count and ascend vowels from a phrases list in python 3?

In the list, phrase, given below I want to print the most frequently used vowels in an ascending order. I have written this code below but I can't figure out how to count the vowels and print them in ...
0
votes
0answers
18 views

“PYTHONPATH”, going through the list and check elements

i have to set my variable maya_env_variable = "PYTHONPATH" after i have to set a new path new_path_list ['User/Desktop'] i have to get the current value of my PYTHONPATH using ...
0
votes
2answers
54 views

Suppressing matching groups in Python regex

I have the following code to match an escaped string: match_str = r'''(["/']).*?(?<!\\)(\\\\)*\1''' test_str = r'''"This is an \"escaped\" string" and this isn't.''' mo = re.match(match_str, ...
0
votes
2answers
36 views

very, very simple web authentication for personal use

I'm using bottle to write a very backend API that will allow me to check up on an ongoing process from my phone. I'm the only person who will ever use this service—or rather, I would very much like to ...

1 3 4 5 6 7 3810