In the Python in the 2.x series Python 2.7 is the latest, and last, major release.

learn more… | top users | synonyms

0
votes
0answers
15 views

line 34 in db.query(q) — AttributeError: Database instance has no attribute 'query'

I am practicing database in python and using Phpadmin database, and made my table but, In line 34 in db.query(q), error is : AttributeError: Database instance has no attribute 'query' #!/user/env ...
0
votes
3answers
66 views

Calling function with two different types of arguments in python

I am new to Python. I came across a weird case and am not able to figure out what the issue is. I have 2 versions of a function written in Python :- v1 - def fileLookUp(fixedPath, version): if ...
2
votes
3answers
59 views

How to get numbers from filenames?

I have many files in directory according to the key: pic001.jpg pic002.jpg pic012.jpg [...] ico001.jpg ico002.jpg ico012.jpg [...] and I want to list this files and create structure like this: for ...
0
votes
1answer
14 views

how to trigger a zone file save from dnspython after an update

I am using dnspython to perform dynamic DNS updates using a syntax similar to: import dns.update, dns.query update = dns.update.Update('zone', keyring=keyring) update.add('source', 60, 'CNAME', ...
2
votes
1answer
67 views

How to open Tkinter programs nicely?

When I opened a Tkinter program, 3 things are opening: My program IDLE (shell) Black screen (python command line) How can I block second and third ones for a clean view? Thanks.
2
votes
1answer
50 views

Twisted / perform asynchronous http requests

I have a twisted reactor listening for incoming data. I have a second reactor performing http requests in certain time intervals sending the results to the first reactor. Both run fine. Now I would ...
2
votes
0answers
107 views

Pything tkinter: plot function with canvas, HOMEWORK

An assignment for uni asks me to use tkinter to create a GUI program that takes a function, color, start point, end point and how many steps to take between (line drawn between each step). I have had ...
0
votes
0answers
34 views

dealing with contours and bounding rectangle in opencv 2.4 - python 2.7

I am working with openCv and python and I am dealing with Structural Analysis and Shape Descriptors. I have found this blog: http://opencvpython.blogspot.it/2012/06/contours-2-brotherhood.html that's ...
3
votes
1answer
56 views

Python dynamic functions from strings

I came across few related answers but not what I want. Here is the code I have now: code_str = """ print "this is my global x = " + x print "And another line is done" """ x = 'mystery' ...
-1
votes
1answer
69 views

Find duplicates of two columns from csv

I want to find duplicate values of one column and replaced with value of another column of csv which has multiple columns. So first I put two columns from the csv to the dictionary. Then I want to ...
1
vote
1answer
38 views

Error when calling scikit-learn using AMD64 build of Scipy on Windows

I am getting this error on this line: from sklearn.ensemble import RandomForestClassifier The error log is: Traceback (most recent call last): File "C:\workspace\KaggleDigits\KaggleDigits.py", ...
0
votes
1answer
29 views

Exception in thread Thread-4 - finding the reason or catch the exception

I'm running this script on my server in order to send push notifications on new mail arrival. It works great but sometimes the script will crash with the error below. I don't know why it's crashing ...
4
votes
3answers
59 views

How to copy a list which will not be changed in function call in Python

I was working on these functions (see this): def removeFromList(elementsToRemove): def closure(list): for element in elementsToRemove: if list[0] != element: ...
0
votes
1answer
32 views

Please help me troubleshoot this search API issue

I want this output: test but instead I get this output [search.TextField(name=u'comment', value=u'test')] Can you tell me what is wrong? The code is basically {{scored_document.comment}} That ...
0
votes
1answer
21 views

How do I add anti-clickjacking support to an app I'm building in webapp2 for google app engine?

I know there's WSGI middleware for django, but I can't find anything for webapp2. Would the django middleware work?
0
votes
1answer
24 views

Python Request HTTP Page and Use The Source Information

I'm looking to request a webpage with python and to get the source code to string (my page has only text for exmaple Year2012 with no html or other codes so if you do view source you see Year2012 this ...
0
votes
2answers
36 views

In a While loop using random.choice, how to always pick a random letter?

here's the code: # Guess the word program # By Roxmate # 12/04/2013 import random print \ """\t\t\t ***Welcome to Guess the Word Program*** Your goal is to guess what word the computer ...
0
votes
2answers
46 views

Iterating over the elements of two 2D lists in python and printing the difference

I have two 2D lists: list1 = [[]] list2 = [[]] and in a loop I iterate over a bunch of registers and do write operations and then readback operation and get the populated lists. ...
0
votes
1answer
24 views

Unsupported Operand Types for /: 'str' and 'float'

I'm having a bit of trouble with understanding this error message here... I have been using the sklearn machine learning tools on some of my data recently. I've tried outputting the Silhouette ...
0
votes
2answers
40 views

Youtube API: How do you get the URL of a video I just uploaded?

Sorry if this is a stupid question, I have looked through the YouTube python API and I can't seem to find anything. Basically all I want to do is upload a video then get the video ID once it has ...
0
votes
4answers
55 views

Unable to read in files in Python 2.7.4 with open(sys.argv[])

I am within the Python environment in my Terminal on my Mac (OS Lion). The python script contains the following lines, def main(): file1 = open(sys.argv[1]) file2 = open(sys.argv[2]) ...
-5
votes
0answers
21 views

Converting this Python Socket script to PHP [closed]

I have come across this python script that grabs json data from a URL/Port and I was wondering if anyone could help me reproduce the same thing in PHP. I'm not familiar with Python so I know the ...
-4
votes
0answers
16 views

How to connect to an internet router with python 2.7? [closed]

I am trying to write a program using python 2.7 that will connect to a wifi router. I can not find any code on how to do this, or any libraries can you suggest some?
1
vote
1answer
29 views

Python strptime or alternative for complex date string parsing

I have been given a large list of date-time representations that need to be read into a database. I am using Python (because it rocks). The strings are in a terrible, terrible format where they are ...
1
vote
1answer
39 views

How to generate a key hold & press event in Python on Windows

I am trying to make a program so that when I press a button on my gamepad and hold it, a certain character will be written and repeated as long as I hold the button, just as a keyboard works. Until ...
0
votes
2answers
55 views

AttributeError: 'child' object has no attribute '_name'

I'm a beginner to Python and trying to understand class inheritance. But when i try the following code i get this error : AttributeError: 'child' object has no attribute '_name' And here's the code ...
0
votes
3answers
41 views

Type error comparing two datetimes

My problem will look common to you, but I didn't find the answer on the website. I want to combine two dates in python, I use this : delta = 2012-04-07 18:54:40 - 2012-04-07 18:54:39 But I get an ...
-5
votes
1answer
44 views

How to embed python variable on html [closed]

Need some help embedding python variables in html. I cant find a way of working without a framework like django or webpy.
1
vote
1answer
31 views

Not able to parse big HTML using PyQuery

As I'm not sure if the issue I'm facing is a bug or lack of knowledge from my side, I would like to ask for you assistance. The case is, when trying to parse this url ...
-2
votes
0answers
35 views

cannot iterate over a file in python 2.7

in a python file I cannot understand why I don't go inside a for loop. ........ def main(): ........... sent_file = open("AFINN-111.txt") tweet_file = open("output.txt") scores = {} # ...
0
votes
1answer
20 views

When integrating Python how much of the version has to match?

This question is about integrating Python in another program. If I link against Python, I have an import lib named python27.lib or similar (e.g. python26.lib) for earlier 2.x versions. Apparently ...
0
votes
0answers
17 views

Running Linux sudo in python on web2pay

Please i need some help and guaidiance. I have a web2py application running on a raspebery pi. The raspberry pi runs "Linux 3.6.11+ #371 PREEMPT Thu Feb 7 16:31:35 GMT 2013 armv6l GNU/Linux" I am ...
0
votes
1answer
26 views

How do I add my project to 'sys.path' on windows? (trying to use disqus_export.py)

I'm trying to use the command disqus_export.py from 'django-disqus' to export my comments from django.contrib.comments to disqus. When I use disqus_export.py in my outer project folder(where ...
1
vote
1answer
38 views

How to make asynchronous HTTP POST requests

I have this program which runs in a loop with pythoncom.PumpMessages(). While this program runs, it takes input and stores it iternally. When the input reaches a certain lenght, I'd like to send a ...
0
votes
0answers
8 views

How to configure ToscaWidgets 2 on a TurboGears 2.2 with mount Proxy deploy

I have a working turbo gears 2.2 website, deployed as a mount reverse-proxy, exp: https://Some-Domain.com/mySite I know how to configure the webserver to work as a mounted site, but I don't know ...
0
votes
1answer
50 views

How to use Google Drive API from Google App Engine?

I have an app in GAE (Python 2.7), and now need access to Google Drive to display a (shared) list of folders and documents. Searching usually results in pointers to DrEdit, including App Engine and ...
0
votes
0answers
19 views

Binary files in Gridfs-Mongo DB to be stored in local drive in python 2.7

I have stored some attachments into GridFS mongo using the Put command in Gridfs. x12 = 'c:\test\' + str10 attachment.SaveAsFile(x12) with open(x12, 'rb') as content_file: content = ...
1
vote
2answers
86 views

Real time output in Python

In my python code having: print "Hello" time.sleep(20) print "world" I am expecting output as Hello and then after 20 seconds world But Hello and world are printing simultaneously in the ...
1
vote
1answer
30 views

parsing email_message['Subject'] results 3 strings instead of 1

I'm parsing an email subject and getting multiple strings (depending on the subject length) starting with =?UTF-8?B?. Is this normal behavior? How can I join the strings to one string with one ...
0
votes
0answers
29 views

Why does Python WMI GetBinaryValue return nothing when trying to get binary value in registry?

I am trying to retrieve values for certain registry subkeys and have not been able return values which are binary. I can use the getStringValue and EnumKey methods to retrieve information but for some ...
-7
votes
0answers
83 views

python two argument function [closed]

For all, the “words” should be assumed to be separated by whitespace (spaces, tabs or newlines). Write a function make_index that takes two arguments datafile stipulating the name of a file ...
0
votes
1answer
26 views

How to get the exit status in python

i am using scons build tool with renesas compiler. I want to know the exit status of SCONS when the build terminated with an error. When scons executed the project successfully it will return 0. How ...
-4
votes
1answer
64 views

Python ValueError: invalid literal for float(): 127.0.0.1 [closed]

I am working on a simple bot for UDP flooding, but it isn't working, all I get when I run is is: ValueError: invalid literal for float(): 127.0.0.1 Here is a snip of what I think is causing the ...
0
votes
1answer
34 views

The Python 3.3 equivalent of 'execfile' [duplicate]

Hey guys I need to find out how to open my .py files after writing them in Notepad ++. I find the interface more useful than the Python window. In a tutorial I was following along with the guy uses ...
0
votes
0answers
24 views

Python - How to save a list as an image?

I generate a regular list. Is it possible to save this list as a JPEG image or PNG or whatever so that I can open the image and look at it? I am currently trying to figure it out using the python ...
3
votes
2answers
37 views

Why won't Python return my mysql-connector cursor from a function?

Python (2.7.3) is violating my mysql-connector cursor in some strange way when I return it from a function. This first example works fine... cnx = connect() sql = "SELECT * FROM MyTable" cursor = ...
0
votes
0answers
81 views

Python HOMEWORK: GUI Tkinter

Im working on a Python assignment using Tkinter. It is suppose to look like this, but looks like this. Can you please give me a little help getting the layout right? With the sunken frames, space ...
0
votes
1answer
28 views

working around an error in a python module

So I have found an error in a module I am using (which one is unimportant, but if you must know it's geopy.distance) So I know what I have to do to fix the code, but when I open the .py file and edit ...
0
votes
0answers
7 views

Tweetstream Time Bound for a user time line

I am trying to use tweetstream module to extract my tweets and my friends tweet for a particular time say for 1 day worth. Unfortunately tweetstream is a streaming api and do not have any class which ...
0
votes
1answer
15 views

Importing a distributed python package from Django view

I am working on a Django project where I need to get search results from the Amazon Product Advertising API. I've successfully used the API in PHP but am now working on my first Django app. I have ...

1 3 4 5 6 7 138