0
votes
0answers
8 views

Python NLTK snowball stemmer UnicodeDecodeError in terminal but not Eclipse PyDev

I'm using the snowball stemmer to stem words in documents as shown in below code snippet. stemmer = EnglishStemmer() # Stem, lowercase, substitute all punctuations, remove stopwords. ...
1
vote
0answers
28 views

Python memory error for a large data set

I want to generate a 'bag of words' matrix containing documents with the corresponding counts for the words in the document. In order to do this I run below code for initialising the bag of words ...
1
vote
1answer
13 views

conversion of namespace to nodename in lxml - python

I am using lxml library... I have a tag in an xml file called <a:rPr lang="en-US" dirty="0" smtClean="0"/> and the prefix a refers to namespace ...
0
votes
3answers
45 views

How to order by date defaultdict(list) value?

defaultdict(<type 'list'>, {'003': [('Biology', 'A', '04/18/2013'), ('Irdu', 'A' , '04/17/2013')], '002': [('Biology', 'A', '03/01/2013'), ('Math', 'C', '01/10/2 013'), ('Math', 'C', ...
0
votes
1answer
26 views

multiprocessing map raises exception

I have this simple example of map using multiprocessing. But even this I can't make run correctly. import multiprocessing p = multiprocessing.Pool() rere = range(50) print p.map(lambda x: x+1, ...
0
votes
0answers
20 views

python metaclasses of classes created by type

Code is better than words here: class MetaA(type): def __new__(cls, name, bases, attrs): print "MetaA" return super(MetaA, cls).__new__(cls, name, bases, attrs) class A(object): ...
0
votes
5answers
37 views

Separate lists stored in a variable using Python

I have following variable holding individual lists and its part of a for loop. Please suggest how to extract it into separate individual lists. list = [[68.0], [79.0], [6.0], [8.0], [61.0], [88.0], ...
-1
votes
1answer
32 views

How to perform arithmetic operation on a date in Python?

I have a date column in csv file say Date having dates in this format 04/21/2013 and I have one more column Next_Day. In Next_Day column I want to populate the date which comes immediately after the ...
0
votes
0answers
14 views

SIP Simple Client SDK - Segmentation Fault

I am trying to use the SIP Simple Client SDK example client sip-register under Linux Mint 13 / Ubuntu 12.04. But I get a segmentation fault. I compiled pjsip without video and audio support and ...
1
vote
4answers
78 views

Python (learn python the hard way exercise 35)

I'm currently working on Zed Shaw's Learn Python the Hard Way. In exercise 35, one finds a program which includes these lines: def bear_room(): print "There is a bear here." print "The ...
0
votes
0answers
15 views

Avoid passing all local variables with scipy.weave.inline

Can someone explain this: Using scipy.weave.inline, I supply a list of variables to make available to the C code I'm calling. But in addition to this, scipy.weave.inline also passes both globals() ...
-2
votes
1answer
29 views

Using Python scripts create dynamic html file

Using the below Python scripts i can able to create html file by already set the variables(a,b,c,d) as global.I want to run the script dynamically, even also i don't set some variables as globally ...
0
votes
2answers
71 views

Python: How can I create a Python project compatible to Python 2 and Python 3?

I want to create a package which should be compatible to Python 2.7 and Python 3.3. The logic should exist only once. How do you normally represent the programming logic - in Python 2.7 or Python ...
0
votes
12answers
75 views

create dict from two lists python without zip()? [closed]

I'm creating a dict using zip(), how would I do it without zipping or numpy? def listtodict(list1, list2): d={} return dict(zip(list1, list2)) print listtodict([1,2,3,4,5],['a','b','c','d','e'])
0
votes
0answers
15 views

how to do Live streaming in Python card using IP based camera

Can anyone help me out how to get the live video streaming in pythoncard using a IP based Camera.
0
votes
3answers
46 views

Convert List of strings to ints without removing 0

So I have a list of strings that I want to convert into a list of ints ['030', '031', '031', '031', '030', '031', '031', '032', '031', '032'] How should I go about this so that the new list does not ...
-2
votes
2answers
43 views

IndexError: list assignment index out of range (in __init__) [duplicate]

Due to my recent interest in Information Security and network programming, I've decided to learn Python through the Internet. I'm trying to write a piece of code which would allow the user to store ...
-5
votes
0answers
62 views

what is the explanation of this statement? [closed]

x = T.dvector('x') y = x ** 2 J, updates = theano.scan(lambda i, y,x : T.grad(y[i], x), sequences=T.arange(y.shape[0]), non_sequences=[y,x]) f = function([x], J, updates=updates) could anybody ...
0
votes
0answers
33 views

Inserting multiple columns into sqlite database from python list

When inserting values from a list into an sqlite database, columns are overwritten. The second insert from 'sorted_patienttwo' replaces values from the first insert. Either the second insert should be ...
1
vote
2answers
48 views

Python regular expressions for simple questions

I wish to let the user ask a simple question, so I can extract a few standard elements from the string entered. Examples of strings to be entered: Who is the director of The Dark Knight? What is ...
0
votes
1answer
60 views

possible to set variable with multiple if statments?

I can do this: x ='dog' testvar = 1 if x == 'dog' else 0 My x in this case can be one of three things. 'dog', 'cat, or '' (empty) I would like to set testvar equal to 1 if x == 'dog', equal to ...
0
votes
1answer
30 views

trying to understand a Python Unicode exception

I have a string object of unspecified type. It will match types.StringTypes, but could be a type.StringType or type.UnicodeType - I'm not sure what I'll receive. I can't necessarily control what ...
0
votes
2answers
49 views

How to add columns in between others in CSV file?

I do have a CSV file row as follow 22727176549389059,1917,6544,91999926,266392261,53972147,2131,Sun Apr 28 21:00:44 PDT 2013 I want to add a column in between 4th and 5th column. How can I ...
2
votes
2answers
41 views

Multiprocessing - Process owns my computer

I was just having a go with how to use the multiprocessing.Lock() Working from the examples on: http://docs.python.org/2/library/multiprocessing.html This example in fact: from multiprocessing ...
1
vote
2answers
34 views

Python Wave Library String to Bytes

So basically I am trying to read in the information of a wave file so that I can take the byte information and create an array of time->amplitude points. import wave class WaveFile: # ...
1
vote
1answer
27 views

Unable to unwrap image in OpenCV

I am trying to convert an image from cartesian to polar so that I can unravel the image, but I am getting a runtime error. If you are curious how this looks visually, see this example. Code: import ...
0
votes
3answers
37 views

python “multiple” combine/chain list comprehension

I am quite new to python and I have been learning list comprehension alongside python lists and dictionaries. So, I would like to do something like: [my_functiona(x) for x in a] ..which works ...
0
votes
3answers
67 views

Python: A good regular expression for text parsing in this example [closed]

There are words with their pronunciation. anyway i am interested in extracting just the first word A AH0 A'S EY1 Z A(2) EY1 A. EY1 A.'S EY1 Z A.S EY1 Z A42128 EY1 F AO1 R T UW1 W AH1 N T UW1 ...
1
vote
2answers
51 views

python: adding a reset function to a threaded application

My python code runs a function that takes a long time: Navigation() During this execution I'd like to have a reset button. For reset button to work, I used threading and I managed to get my code ...
0
votes
3answers
42 views

Constructing an AND statement in SQLite with Python

I have a SQLite database table with three columns: order_id, item, quantity. Each row has an order_id, an item, and a quantity. I am trying to write a query that finds orders that contain two ...
0
votes
1answer
45 views

Using python regular expressions to sub between two files

Basically I'm trying to read text from a text file, use a regular expression to sub it into something else and then write it to a html file. here's a snippet of what i have: from re import sub def ...
1
vote
3answers
22 views

Django 1.4 serving media files works, but not static

I am using Django 1.4 and for some reason i am able to serve media files, but not the static ones... Here is my code: settings: MEDIA_ROOT = os.path.join(BASE_DIR, 'media/') MEDIA_URL = '/media/' ...
0
votes
1answer
29 views

Fake out module including attributes

As a unit test, I would like to be able to test that the imports defined in a bunch of GUI screens make sense programatically. I don't want to have to execute anything, just import main_screen and ...
0
votes
0answers
40 views

get data from USB using python

I am not understanding the USB protocol properly and so getting confused with my code to get data about the USB when i add it. I cant figure out where i am going wrong. My system is windows 8 64 bit. ...
0
votes
0answers
11 views

Sending python logger info or messages to client through UDP or TCP connection

i want to send the logger info/messages of a python script to vb.net application via UDP or TCP. can anyone help me finding the right way to do so ? Here is my work roughly done : Its just log the ...
0
votes
1answer
40 views

converting list to dict and averaging the values of duplicates in python

I have a list: list = [(a,1),(b,2),(a,3)] I want to convert it to a dict where when there is a duplicate (eg. (a,1) and (a,3)), it will be get the average so dict will just have 1 key:value pair ...
1
vote
2answers
39 views

Match many results in the same String

I'm trying to get the data from log file whose lines are in different format, but it is guaranteed that important information is put inside [], for example: [User] has [do something] on [system] at ...
1
vote
4answers
45 views

python, generate random string in range 01-12

I need to generate random string in python, that is in range 01 - 12. The zero has to be there in front, if the number is below 10. So basically I need the function to return something like 05 or 09 ...
1
vote
3answers
72 views

Sum the nested dictionary values in python

I have a dictionary like this, data={11L: [{'a': 2, 'b': 1},{'a': 2, 'b': 3}], 22L: [{'a': 3, 'b': 2},{'a': 2, 'b': 5},{'a': 4, 'b': 2},{'a': 1, 'b': 5}, {'a': 1, 'b': 0}], 33L: [{'a': 1, 'b': ...
0
votes
2answers
46 views

Python module names starting with numerals [duplicate]

When I try to import a module in python(.py file) it gives a syntax error. The module name starts with a numeral. Is that the reason for the syntax error?
0
votes
1answer
21 views

Making Sprite Jump in Pygame

Making a basic game and im trying to get my character to jump when space is pressed I have a simulated gravity that pulls it down when space is released but when i push space down it goes up and ...
0
votes
0answers
20 views

Get python socket handle number

On C# i can get socket handle with function sock.Handle.ToInt32(), on python i don't known function like c#. I'm try convert int and get error message: sockid = int(self.client) TypeError: int() ...
0
votes
1answer
28 views

mod_wsgi loading python script from wrong Pyramid app directory

I have two apps with nearly identical code base (same functionality, just different branding) that I am trying to do virtual hosting with using mod_wsgi and apache. the virtual host settings for both ...
0
votes
2answers
22 views

How to pass xml as a parameter in python script?

I have the parameters to be passed to my python code saved in an xml file. How to pass this xml as a parameter to my python code? Can someone please help on this? Thanks in Adavce!
1
vote
1answer
24 views

Good Pattern for Class-Based “Task” Modules?

I'm attempting to design an easily-extendable/modular command-line application in Python (2.7). Each module is called a "task". There is one task per file, contained in a tasks/ directory, each ...
1
vote
1answer
27 views

Efficient way to iterate through numpy arrays in parallel and create a new resultant array

I have 3 numpy arrays dm_w, dm_s and dm_p. I am in need of iterating through these arrays in parallel, do some computation based on a check condition as shown in code below. My code works well for ...
4
votes
2answers
50 views

Converting string to ordered dictionary?

I have a string which basically contains a bunch of JSON formatted text that I'd ultimately like to export to Excel in "pretty print" format with the proper indentations for nesting, etc. It's ...
0
votes
1answer
18 views

how to automate this beautifulsoup import

I am importing links to boxscores from this webpage http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/wnba/teams/pastresults/2012/team665231.html This is how I am doing it now. I get ...
0
votes
0answers
21 views

Accessing Event Log with Python 2.7

I am a complete beginner to Python and have done some basic works before. Though now I have been tasked to create a python script that can do a few things with the Windows Event Log and then print the ...
1
vote
2answers
33 views

input error in python

from theano.tensor import stacklists, scalars, matrices from theano import function a, b, c, d = scalars('abcd') X = stacklists([[a, b], [c, d]]) f = function([a, b, c, d], X) f(1, 2, 3, 4) ...

1 2 3 4 5 92