0
votes
2answers
49 views

LearnPythonTheHardWay Exercise 50

This is obviously a simple issue but I just cant seem to get it. In LPTHW Exercise 50 I am asked to create a webpage foo.html. I have done this and saved it in the templates folder of my projects ...
0
votes
1answer
9 views

Working with Tkinter, Progressbar, and Queue

I would like my Tkinter Progressbar to update incrementally. I've tried following the examples mentioned here. Originally, I tried the code without using threading. This resulted in a delay before ...
0
votes
1answer
13 views

Python _socket.socket vs socket._socketobject, how to convert from one to the other

I realised that my problem with wrapping sockets in ssl, when the socket is built from a fd is related to a socket._socketobject being converted (after rebuilding it from fd) into a socket._socket. ...
0
votes
0answers
8 views

Google python map-reduce library returning a NULL context

In my mapper, the context is being returned as NULL class DeleteOldObservationsMapper(object): """Mapper for deleting old observations.""" def __init__(self): ...
1
vote
1answer
97 views

Python 'If not' syntax

I'm a bit confused about how/why so many python developers use if not in their conditional statements. for example, lets say we had a function, def foo(bar = None): if not bar: bar = 2 ...
0
votes
1answer
7 views

Python Cannot rebuild SSL socket after putting in Multiprocessing.Queue

I have a server that has one process waiting for connections and then puts the sockets into a queue so worker threads can pick up a connection and communicate with the clients and do whatever. ...
0
votes
1answer
16 views

Imports not working in Google App Engine project

Im working in python to build a webapp using GAE. The project was originally built with out GAE, and it worked just great, then I brought those files into the GAE project, and all of a sudden they ...
7
votes
2answers
106 views

How to print negative zero in Python

I am converting decimal degrees to print as DMS. The conversion algorithm is what you would expect, using modf, with the addition that sign is taken out of the MS portion and left in only for the D ...
-5
votes
1answer
35 views

I am new to python, wrote this code which is not working fine [closed]

print ("Welcome to the English to Pig Latin translator!") original = raw_input("Enter your word") print (original) if len(orginal) > 0: print (original) else: print ...
-1
votes
1answer
37 views

While loop endless cycle (2.7)

I'm currently quite new to Python, just a heads up. I've been working on a multichoice quiz, and it seems like with every improvement I make, the more problems pop up. This is a snip from the quiz ...
0
votes
0answers
11 views

Can mechanize (python) deal with HTTPS?

I learning form filling through mechanize. I used the code : import mechanize abc = mechanize.Browser() abc.set_handle_robots(False) ua = ' Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:16.0) ...
0
votes
0answers
10 views

Controling multiprocess by multiprocess results PicklingError and EOFError

I want multiprocess to manage multiprocess,I write this code with python 2.7.3 It results pickle.PicklingError and raise EOFError. Where should I change code. I'd be happy to show code example. # ...
0
votes
0answers
10 views

Created table on heroku postgres dev but while inserting it says table doesn't exist

Here is my python code to insert data in to heroku postgresql data store. import os from flask import Flask import psycopg2 app = Flask(__name__) @app.route('/') def hello(): try: conn ...
0
votes
0answers
32 views

How to semantically cluster the image search results

I want to semantically cluster the image search results for a query like apple into different groups like apple fruit, apple laptops, apple iphone, apple inc, etc and display to user in a heirarchial ...
2
votes
3answers
56 views

Python add item to the tuple

I have some object.ID-s which I try to store in the user session as tuple. When I add first one it works but tuple looks like (u'2',) but when I try to add new one using mytuple = mytuple + new.id got ...
0
votes
0answers
16 views

Unable to get multiprocessing.Pool and numpy.memmap to work consistently

I'm trying to read a few files simultaneously using multiprocessing.Pool and numpy.memmap. I've had this running in a few instances, but frequently get errors such as TypeError: object of type 'type' ...
1
vote
1answer
33 views

how to line up text in list box python

i have three lists populating a list box. what i would like to know is there a way to format the phrases so that the names are all in line then the dates and then the info. i have tried to use + to ...
0
votes
0answers
11 views

ImportError: No module named psycopg2 on heroku

Here is a piece of my python code import psycopg2 Its showing error ImportError: No module named psycopg2 when deployed on heroku. And here is my requirements.txt Flask==0.9 Jinja2==2.7 ...
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 ...
-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 ...
0
votes
0answers
32 views

manage.py runserver gives recursion error [duplicate]

I'm trying the Django tutorial; when asked to run manage.py runserver I get the following 2 lines: File "C:\python27\lib\functools.py", '__lt__': [('__gt__', lambda self, other: other < self), ...
1
vote
1answer
14 views

Using ttk.Progressbar in determinate mode

I'm trying to get a progress bar to appear on a Toplevel widget, then incrementally increase every few seconds until complete. When I click "Start", there is delay of a few seconds before the ...
1
vote
1answer
17 views

How to `strftime` having timezone adjusted?

I store my datetime int UTC like so: import pytz, datetime timeUTC = datetime.datetime(2013, 5, 23, 19, 27, 50, 0) timezoneLocal = pytz.timezone('Europe/Vilnius') timeLocal = ...
0
votes
0answers
6 views

Python2.7 Eclipse Autoconfig cant find stdlib

I am trying to work with Python 2.7 in eclipse on my Mac(Mountain Lion). I used the autoconfig option to create the interpreter, but when I do I get "Error: Python stdlib not found or stdlib found ...
0
votes
2answers
29 views

Filtering list of dictionaries by regex match

I'm writing a python script which collects metrics and I have: collected, a list containing all messages, stored as dictionaries denied_metrics, a list containing all compiled regular expressions ...
-1
votes
2answers
45 views

Deleting file in Python not working

I'm trying to delete a temp file using: os.remove(str('temp.bin')) Here is the complete function, note that I am using an API (XWF) to read out data into a file, which works fine as is. This works ...
0
votes
0answers
8 views

Solution Architecture for line matching, file editing and result gathering

The desired output A text file like so: 2013-05-25 Recommendations coverage : x% Products viewed with recommendations : y 2013-05-24 Recommendations coverage : x% Products viewed with ...
0
votes
1answer
62 views

Python2.7 Modules Missing

I am trying to work with Python 2.7 in eclipse on my Mac, I don't belive that I have ever messed with the source files, but when I try to import urllib, urllib2 or random it tells me that it can't ...
0
votes
1answer
34 views

How to make file paths configurable within an ArcGIS Python Add-In?

This might be a general programming question but since I am doing it from within an Add-In therefore asking here at GIS forum. I have a project folder with sub-folders containing several files on my ...
0
votes
0answers
15 views

Overriding attributes in chef programatically

I am using chef to test software. Thus the file name and download location of said software dynamic/would be passed in as an attribute. Note that I have to use the chef scripts and recipes that our ...
1
vote
5answers
69 views

Python: Strip off string quotes from binary number

so i have t= 111 bin(1111) Out[105]: '0b10001010111' and g = bin(111) g Out[16]: '0b1101111' My question is, is there away to strip the quotes. I am concerned with performing arithmetic ...
1
vote
2answers
47 views

Dictionary with Tuples as Values?

I have a location name and then a latitude and longitude for each location. I'm trying to determine the best way to express a single key with two values in Python. I was thinking this: dict = { ...
0
votes
0answers
19 views

Trouble installing PyObjc using pip, easy_install, manual

I'm having a lot of trouble installing PyObjC. I've tried pip, easy_install, and manual installation and they all give me errors. I'm trying to use easy_install right now because it is the ...
1
vote
1answer
11 views

Call a macro with parameters : Python win32com API

What I want to do is call a macro from my python code. Here isa sample of the sources : xl = win32.gencache.EnsureDispatch('Excel.Application') xl.Visible = 1 xl.Workbooks.Open("C:\\Program ...
0
votes
1answer
28 views

Why do I get different charset when python use MySQLdb?

I wrote a python program use MySQLdb in my gentoo: mysql version = 5.1.67-log Gentoo Linux mysql-5.1.67 characterset = utf-8 when I connect to mysql, and print conn.character_set_name(), it ...
1
vote
3answers
34 views

How to access a method's attribute

Is it possible to access a method's attribute directly? I tried this and it fails: class Test1: def show_text(self): self.my_text = 'hello' Which results in: >>> t = Test1() ...
0
votes
0answers
36 views

building a Python SQL injection vulnerability tester [closed]

I'm building a small script in Python which would inject some data (from a file) into the input fields on some random website. It would inject SQL injection test strings into forms. I get all the ...
-1
votes
4answers
74 views

Issue with “if” statement in Python

I have one file and I am trying to populate second file using its data in Python. While populating I am applying some if statements to manipulate one column in the 2nd file. What I want to perform ...
0
votes
1answer
18 views

Python openSLL Server Crash on connection - odd error on SSL

I am trying to get a SSL server running, so it can accept JSON object and reply with other JSON objects. However, before doing JSON objects, I decided to do a simplified version and I came across this ...
0
votes
1answer
15 views

PyInstaller: drag-and-drop files to the --onefile exe

I finally got the PyInstaller up and running. So far it looks good, I'm able to create a single exe that does some calculations on the files in the directory where the exe is located. So I just copy ...
1
vote
0answers
53 views

Lambdas are restricted to a single expression! Why? [duplicate]

From a tutorial: With the lambda keyword, small anonymous functions can be created. ... They are syntactically restricted to a single expression. Why on Earth does this limitation exist?
2
votes
1answer
25 views

What is the difference of lifetimes of compound types and scalar types?

The following is an except from a tutorial. The default value is evaluated only once. This makes a difference when the default is a mutable object such as a list, dictionary, or instances of most ...
0
votes
1answer
12 views

add our country's holidays in the open ERP 7 calendar

I need a little help around the calendar. I want to add our country's holidays in the ERP calendar. The calendar from the ERP ( Sales->Meetings) allows only to add request of leaves/vacations for ...
1
vote
3answers
59 views

Python: My script will not allow me to create large files

I'm making a small python script which will create random files in all shapes and sizes but it will not let me create large files. I want to be able to create files up to around 8GB in size, I know ...
-1
votes
3answers
35 views

Adding list data to a .txt file and re-opening these lists where prompted

I have done some research and found various examples but as my python knowledge is so basic I do not understand them. Is there a method for importing ONLY the lists to another python window as any ...
0
votes
0answers
12 views

URLError: <urlopen error [Errno 11004] getaddrinfo failed>

I am actually writing a code to check whether the links are direct or error or redirect or file download link when i write these lines import urllib2 response = urllib2.urlopen('http://google.com') ...
0
votes
0answers
14 views

constant value replacing in job.properties

I am new to python. I am working on reading job.properties file in python. The properties file should be in xml format to submit a job. The properties file looks like this: var1_path=<Var1_path ...
0
votes
0answers
19 views

gevent http server behind nginx hanging

Using nginx 1.2.3, the latest version of gevent, python 2.7 An instance of a gevent WSGI server is created: from gevent import monkey monkey.patch_all() wsgi.WSGIServer((host, port), ...
-1
votes
1answer
37 views

Accessing values from a Unicode dictionary in Python

I have Unicode values similar to this in a dictionary: {u'id': u'100000000265946', u'name': u'Sophia N Art Fuentes'} {u'id': u'100000538132142', u'name': u'Tatiana Vargas'} {u'id': u'1669912701', ...
0
votes
0answers
60 views

Python 2.7 - statsmodels - formatting and writing summary output

I'm doing logistic regression using pandas 0.11.0(data handling) and statsmodels 0.4.3 to do the actual regression, on Mac OSX Lion. I'm going to be running ~2,900 different logistic regression ...

1 2 3 4 5 94