Tagged Questions
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.
1
vote
2answers
18 views
Error while saving attachment
I am new to Python and getting an error which I am not able to get past.
Writing a code to go through my outlook and extract attachment(excel) if subject matches a given string. Here is the code:
...
1
vote
0answers
14 views
Find the parent of a given mock object or check if mock is child of another
Is it possible to identify the parent MagicMock mock object instance of another mock object instance, provided it has a parent? For example, if I have the following code
>>> from ...
1
vote
3answers
22 views
matplotlib 2d line line,=plot comma meaning
I'm walking through basic tutorials for matplotlib,
and the example code that I'm working on is:
import numpy as np
import matplotlib.pylab as plt
x=[1,2,3,4]
y=[5,6,7,8]
line, = ...
0
votes
0answers
8 views
CGI python - Opening multiple sockets fails
I am using python and I use the following code:
import urllib2
def get_data(url):
usock = urllib2.urlopen(url)
data = usock.read()
usock.close()
return data
I am running a script ...
1
vote
1answer
12 views
python 3.2 global variable not updating when its in a thread
I'm making a program and I got into a problem.
I have a thread running which has a while loop that checks if a global variable is equal to False, if its equal to True then exit the while loop.
The ...
0
votes
1answer
15 views
Retrieve audio/mp3 file from URL and save to blobstore
I am trying to save a file (audio/mp3 in this case) to the App Engine blobstore, but with mixed success. Everything seems to work, a file is saved in the blobstore, of the right type, but it ...
1
vote
0answers
8 views
pysimplesoap, urllib2, requests
I'm trying to write a simple utility to pass an XML file to a URL and get a result. I'm using python and have tried requests, urllib2 and simplesoap, all in simplistic fashion as my contact told me ...
0
votes
0answers
11 views
Facebook app: Access token expires with XMLHttpRequest?
My facebook user access tokens are expiring the second time I use XMLHttpRequest. The access tokens are not expiring when I navigate within the app otherwise. I am using a python Flask app with ...
0
votes
3answers
40 views
Python Error ValueError: invalid literal for int() with base 10: 'stop'
Every time I try me code it works but when I type in 'stop' it gives me an error:
ValueError: invalid literal for int() with base 10: 'stop'
def guessingGame():
global randomNum
...
0
votes
1answer
16 views
Python Draw graph with percent of frequency distribution
I'm using Python and have never used it before to draw a plot and was wondering if there's a way to do the following. I have a file containing a column with percents (of DNA methylation data). I would ...
0
votes
3answers
25 views
How to convert YouTube API duration to seconds?
For the sake of interest I want to convert video durations from YouTubes ISO 8601 to seconds. To future proof my solution, I picked a really long video to test it against.
The API provides this for ...
-1
votes
2answers
57 views
I want to learn programming as a hobby - where do I start? [closed]
I LOVE creating spreadsheets in Excel and I think I'm pretty good at it. I enjoy coming up with ways to make the spreadsheet do what I want it to do, and then a friend suggested that I learn to code, ...
2
votes
1answer
36 views
How to draw routes in open street maps using Python/R?
I have data in the form of lattitude and longitude co-ordinates. I want to plot a route for those co-ordinates in OSM using either Python or R. Can somebody tell me where can I begin? I've not worked ...
0
votes
1answer
24 views
Create a python executable using setuptools
I have a small python application that I would like to make into a downloadable / installable executable for UNIX-like systems. I am under the impression that setuptools would be the best way to make ...
1
vote
1answer
30 views
Scale image in matplotlib without changing the axis
I have a GUI that displays a plot. I want to fit that plot to an existing image. I displayed the image under the plot using:
myaxe.plot(...)
myaxeimage = myaxe.imshow(myimage, axpect='auto', ...
0
votes
1answer
26 views
python threading.Timer start immediately not at specified time
i want to execute a function in every 3 second
the code works if i call a function without arguments like below:
def mytempfunc():
print "this is timer!"
threading.Timer(5, ...
1
vote
1answer
30 views
Convert an integer to a 2 byte Hex value in Python
For a tkinter GUI, I must read in a Hex address in the form of '0x00' to set an I2C address. The way I am currently doing it is by reading the input as a string, converting the string to an integer, ...
2
votes
1answer
64 views
Is there a way to update a dictionary without changing any contained mutable types?
I have a dictionary of settings of this kind of structure:
main_dict = {
'a': {
'a1': 1,
'a2': 2,
},
'b': {
'bb': {
'bb1' : 1,
'bb2' : 2,
...
1
vote
0answers
7 views
Can smtplib handle email attachments of an unknown file type for python 3.2.3?
Looks like when using smtplib I need to know the type of file I would like to attach to an email such as MIMEImage, MIMEText, etc. Is there a way to handle attachments when the file type is unknown?
...
0
votes
1answer
25 views
How to add stdout and stderr to logger file in flask
I want to log the stdout & stderr to log files, and this is what I tried.
app = Flask(__name__)
app.logger.setLevel(logging.INFO) # use the native logger of flask
app.logger.disabled = False
...
0
votes
1answer
27 views
sending text output to a window
I've been writing a small text-adventure type game using Python 3.x and Windows 7.
I currently just throw all the output to the console like this:
print("-------------------------")
print ("\nYou ...
-1
votes
1answer
20 views
urllib2.urlopen addinfourl instance has not attribute '__getitem__'
I'm running this python 3 script:
data = json.load(urllib2.urlopen('http://data.mtgox.com/api/1/BTCUSD/ticker')[2])
and I get this error when it runs:
Attribute error: addinfourl instance has no ...
0
votes
2answers
19 views
Overwrite a specific column in a csv file using Python csv module
I am using Python csv module to read a csv file with every line being like:
2013-04-16 7:11:01,186744,3,2,2,1.89E-03
I then convert row[0] to unix time but then I want to replace the datetime with ...
0
votes
2answers
25 views
Arguments for batch size not being captured. Any idea?
I do have following script to capture the command line arguments. Third option for batch size is not being set any idea ?
FYI : Only input & ouput file options are required parameter. Batch is ...
0
votes
0answers
20 views
jQuery Full Calendar, Displays Incorrect Dates on Calendar
I am fetching events via JSON but Full Calendar is rendering them on the wrong dates.
JS:
events: function(start, end) {
start = start.getFullYear() + '-' + (start.getMonth() + 1) + '-' + ...
0
votes
1answer
33 views
Append data in pandas
I can't figure out how to add data to a column in a panda data frame.
I have four sensors that are sampling in four threads. I would like each sensor to append the current value to a specific column ...
0
votes
1answer
16 views
trying to find all the path in a graph using DFS recursive in Python
I have found a solution that was posted some times ago and I have tried to apply it to my exercise but it doesn't work.
I have a class graph that has nodes and edges and a method childrenOf that gives ...
4
votes
2answers
53 views
Why can't Python's string.format pad with “\x00”?
I wanted to pad a string with null characters ("\x00"). I know lots of ways to do this, so please do not answer with alternatives. What I want to know is: Why does Python's string.format() function ...
-1
votes
1answer
63 views
Python 3 - If statement
When I input look I get the "nothing" printed to the screen.
if input("What do you do?") == 'look':
print("You see a room of equal length and width, You see foreign symbols on the wall.")
else:
...
0
votes
1answer
19 views
Designate all python abstract class properties/methods as abstract without decorator for each one
I have an abstract class like so:
class SomeAbstract(object):
__metaclass__ = ABCMeta
@abstractproperty
def one(self): pass
@abstractproperty
def two(self): pass
...
-2
votes
0answers
25 views
There's a way to import a .glade file on Tkinter?
I wont find any answer that can help me. I have a simple script in Tkinter(Login Window) and I'm looking for a way to import a .glade file on my script, or another program that will do the same thing ...
-1
votes
1answer
30 views
Accept Python Code from client and execute
I want to embed a 'console-like' window in my tool - And, in this console, I would like to provide a feature to my users of the tool wherein Users can type Python code and hit run, and my tool would ...
0
votes
2answers
29 views
python os.makedirs Error 13 permission denied
I have a server set up on apache.
So when i run it and i upload a few files from a different machine. The server crashes here..
os.makedirs('data/%d' % stat.id)
The server crashes and it gives ...
0
votes
1answer
15 views
Selenium: How to stop the browser window getting on-top for every get?
Everytime I do a get,
for a in al:
browser.get(a)
...
the window of the browser gets on-top and I cannot do other things on the computer.
I am using python, Chrome driver ...
0
votes
1answer
30 views
Importing data with Pandas
I am importing a query log as a table into a data frame with Pandas/Python as follows:
import pandas as pd
q_data_1 = pd.read_table('table_data.txt', skiprows=6, thousands=',')
I get the following ...
0
votes
0answers
10 views
D-Bus D-Feet Send Dictionary of String,Variants in Python Syntax
I'm trying to use D-Feet to send D-Bus commands for ConnMan. D-Feet says all Parameters should be in "Python Syntax".
The D-Bus method is described by D-Bus as this:
ConnectProvider(Dict of ...
0
votes
1answer
26 views
Mysql Creating a Foreign key
I need to create a foreign key for my Reviewers_POS table.
I have the Reviewers_Id as my Primary key, and i want to pass it to my id_r1 from Reviewrs_POS table..
import MySQLdb as mdb
import ...
0
votes
0answers
23 views
How to use methods of classes that require initial training on datasets within a django app
I have a django app that needs to access methods from a class that was previously trained on some data.
To put things into context, the django app needs to access a classifier for classifying text. ...
0
votes
1answer
11 views
Python - cannot import slycot module in spyder (RuntimeError & ImportError)
When I try to import the slycot module in spyder (version 2.2), I get the following error:
RuntimeError: module compiled against API version 7 but this version of numpy is 6
Traceback (most recent ...
0
votes
0answers
6 views
Gtk.CssProvider() how do ID based selectors work in Gtk3?
I've been fiddling with this on and off for a couple of days but just can't seem to come to grips with what the issues might be.
Essentially I'm trying to style some Gtk Widgets in Gtk3 using CSS ...
1
vote
1answer
30 views
How would one go about having a python script run automatically across all platforms?
I'm writing a fairly simple script that backs up files to AWS S3. But that's fairly irrelevant to my question at hand. The user is going to specify how often they want the script to run, probably ...
0
votes
0answers
12 views
How to rename namespaced fabric commands
How do you control how custom Fabric commands are exposed?
I organize my commands in various packages like:
mydomain
__init__.py
db.py
@task
def create()...
@task()
...
3
votes
0answers
26 views
Using pandas DataFrame with incoming real time data
Which is the most recommended/pythonic way of handling live incoming data with pandas?
Every few seconds I'm receiving a data point in the format below:
{'time' :'2013-01-01 00:00:00', 'stock' : ...
0
votes
1answer
15 views
python 3 fdfgen unicode TypeError
I am using Python 3.3 and am trying to make use of the wonderful fgfgen / forge_fdf script (thanks guys, btw).
When I attempt to run a sample test of fdfgen, I return the following error.
...
3
votes
1answer
53 views
Why am I getting this AttributeError?
I'm in the process of changing my KML library from python 2 to 3, and I've hit a snag here. Whenever the KML object is created, with k = KML() for example, I get the following error: AttributeError: ...
1
vote
1answer
13 views
get QuadMesh object from Axes (or Figure)
I'm trying to make a plot where the various subplots all share a colorbar similar to this answer. The problem that I'm running into is that in my script, I'm calling a function which creates the ...
1
vote
2answers
86 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
2answers
34 views
How do you manually tell Python which version to use in the script itself, across multiple operating systems?
I have Python 2.7 and 3.3 installed on Windows, and Python 2.7 and 3.2mu installed on Linux.
How would I write a Python script that is able to be used on both Windows and Linux, using version 2.X or ...
0
votes
0answers
24 views
Obj-C communication with REPL process
I'm trying to make an IDE for Python using OSX/Cocoa. I'd like to set it up so that my IDE has multiple views that all talk to a persistent Python REPL running in the background.
What are some good ...
1
vote
0answers
16 views
Python curses Redirection is not supported
I am trying to use Curses in PyDev in Eclipse in Win7.
I have installed Python 3.2 (64bit) and curses-2.2.win-amd64-py3.2. When I input the following testing codes into PyDev:
import curses
...



