In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
0
votes
1answer
16 views
“import nltk” - Not working on xampp
I'm new to python and nltk. I have problem on import nltk.
I installed python in xampp on windows under the path C:\xampp\Python.
And I installed nltk under the path C:\xampp\Python.
After this I ...
0
votes
0answers
21 views
Zero-length URL Segments
Using the latest versions of Flask and Flask-RESTful, I have some very basic routes defined as such:
def build_uri_rules(uri_map):
for cls, uri in uri_map.iteritems():
...
0
votes
1answer
29 views
Extracting subplot coordinates in Python
I am new to Python and I am actually trying to plot a figure over a subplot.
The difficult thing is that I need the axes property which is a string I can obtain by simply printing the subplot ...
0
votes
1answer
20 views
How to plot a scatter diagram using rpy2 in python?
I have a dataset like below in dictionary format,
data={'a': [10, 11,12,5,4,3,1], 'b': [7, 18,5,11,9,2,0]}
How we can make a scatter plot in python using rpy2? where x axis is the months and y ...
1
vote
0answers
9 views
import statement in empythoned doesn't work in chrome extension
I am using javascript generated by Empythoned to create a chrome extension. Python import doesn't work in chrome extension where as it works in web application. Here is the demo.
Sample code:
Web ...
-4
votes
2answers
53 views
Python Regex Query Syntax
I'm trying to use a regex to match a certain type of string in a file (an encrypted password). The rules I want to apply for the regex are:
Contains upper and lowercase characters in any order
...
0
votes
1answer
16 views
QFrame is not drawn
I am having a problem diplaying a QFrame in PyQt4 Python2.7.
When I display the QLineEdit, the Qframe self.videoframeRemote is not drawn.
If I remove the QlineEdit, it is drawn.
I cannot find whats ...
1
vote
3answers
41 views
Python split string on quotes
I'm a python learner. If I have a lines of text in a file that looks like this
"Y:\DATA\00001\SERVER\DATA.TXT" "V:\DATA2\00002\SERVER2\DATA2.TXT"
Can I split the lines around the inverted ...
0
votes
0answers
22 views
Import and Environment Variable issues using Python/Django in PYcharm on Ubuntu
I am working through the PYcharm tutorial, which sets up a polling site, as my first Python/Django project. I am new to this so if I am asking silly questions I apologize in advance. In the admin.py ...
0
votes
2answers
44 views
How to close a cmd window using python 2.7
The title pretty much says it, although it does not need to be specific to a cmd, just closing an application in general. I have seen
os.system(taskkill blah blah)
this does not actually close the ...
0
votes
0answers
26 views
CRUD function in python flask with DAO and Facade in pymssql
Thanks for looking into this. I am beginner in programming and would appreciate your help.
I am using MS-SQL Server and pymssql (extension module) to connect to database from python. I have setup a ...
0
votes
1answer
47 views
How to type into cmd using python 2.7
I have a program here that I would like to convert to 2.7. This code works well in Python 3.x, however, for my needs it must be 2.7. Could someone 'convert' this to python 2.7 for me? I have heard of ...
0
votes
2answers
20 views
Output doesn't appear on standard output in Python when writing in try… except: block
import urllib2
import webbrowser
import time
import sys
URL = "http://nonexisting"
while True:
try:
website = urllib2.urlopen(URL, timeout=1)
if website:
...
0
votes
1answer
46 views
How to loop extracted div with selenium in Python?
In my previous step i had a problem to get text from div, after few hours finally i got what i want, but the next step was not even easier, becouse i want to loop that print text (variable).
I hope ...
1
vote
1answer
44 views
zip and groupby curiosity in python 2.7
Can someone explain why these output different things in Python 2.7.4? They output the same thing in python 3.3.1. I'm just wondering if this is a bug in 2.7 that was fixed in 3, or if it is due to ...
2
votes
2answers
33 views
Randomize a Django queryset once, then iterate through it
I'm writing an app that allows people to compare different pairs of hashtags.
Model:
class Competitors(models.Model):
tag1 = models.ForeignKey('Hashtag', related_name='+')
tag2 = ...
3
votes
1answer
66 views
How to write a python script to keep trying a webpage until it opens
We are waiting for my sister's result. And as it happens, a lot, with the Indian govt. the server is slow, traffic is heavy.
So, I thought of writing a python program, to keep trying until the ...
-4
votes
1answer
97 views
python string evaluation not giving proper output [closed]
I have a python function test to test my code . ' got and expected string are the same , But when I check it through the below method it gives X instead of OK
Edit : including the parent function ...
0
votes
1answer
41 views
Django views: how to modify returned queryset before rendering in template?
I'm trying to make a simple weather JSON API with Python 2.7 and Django 1.5.
My WeatherData model looks like this:
class WeatherData(models.Model):
created_at = ...
0
votes
0answers
16 views
Program crash on navigation tool bar click - matplotlib - python
I have created a user interface based on the integration of pyqt and matplotlib. I have create a standalone .exe using pyinstaller 2.0 (using the command line in accordance to the program ...
0
votes
1answer
33 views
How do I save a Netscape style cookies.txt file using Python 2.7 and Requests?
I am using requests to fetch a webpage and I would like to save the cookies in a Netscape-style cookies.txt file. How can I achieve this? I have tried the following:
import requests
import ...
0
votes
2answers
112 views
Print doesn't work after import in Python
I'm very new to Python, but want to run script from server.
So, I have following structure
project
-A1
--A1.py
--A2.py
-B1
--B1.py
--B2.py
-test.py
Also there is __init__.py in each subdirectory
...
0
votes
0answers
9 views
Specifying pattern of tests in nose
Related question nose does not discover unit tests using load_tests
I am looking at running only specific patterns of tests in nose. In normal python unit test I would do something like
...
-1
votes
0answers
13 views
Pandas.io write_frame throws UnicodeEncodeError
I am trying to write a frame (imported via pd.ExcelFile.parse()) to MySQL as follows:
sql.write_frame(EMCompanies, con=db, name='EMCompanies', if_exists='append', flavor='mysql')
Unfortunately, I'm ...
1
vote
4answers
48 views
Function call syntax oddity
I was experimenting with something on the Python console and I noticed that it doesn't matter how many spaces you have between the function name and the (), Python still manages to call the method?
...
0
votes
1answer
29 views
wxPython Dialog freezes after ShowModal
Here the code directly, worth thousand words of explaining it.
#!/usr/bin/env python2
import wx
class TestDialog(wx.Dialog):
def __init__self(*arg, **args):
wx.Dialog.__init__(self, ...
0
votes
1answer
68 views
Importing functions bad, classes okay?
Just a style question but I'm working on a project where the style guidelines frown upon
from foo import bar when bar is a function but not when bar is a class. I don't understand the rationale ...
1
vote
1answer
28 views
Using LIBSVM on Visual studio 2010
I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more ..
I've worked with libsvm using the documentation provided by its official site ...
So I used ...
1
vote
1answer
25 views
I can not download a blob from GAE BlobStore
What is wrong with this code? I can not download a blob following the download url sent as response of the UploadHandler. I am getting a 404 response from the server.
I have doubts about how to send ...
1
vote
0answers
44 views
How to create custom model for the facebook api
Context: Facebook graph API , Django, Python 2.7
I want to use the facebook graph api in python (that's ok) , and I'am curently learning this language.
I want to generate response automaticaly from ...
0
votes
0answers
7 views
adding contrast to an image in python
I am trying to work through a process where I take an astronomical fits file, subtract a masterflat file and then later the contrast on the resultant image.
The first part has been done successfully ...
1
vote
1answer
18 views
Why does GASP work properly only when induced in terminal?
I typed the following commands into terminal:
br@wind:~$ python
Python 2.7.3 (default, Aug 1 2012, 05:16:07)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more ...
0
votes
1answer
14 views
django-tastypie REST update or delete resource with username
Hi there i am using django tastypie and i can update (PUT) a resource if i provide an id like this :
http://mysite.com:8000/api/v1/user/1/
But my question is, can i do an update without the id ...
1
vote
3answers
44 views
Python division operator acting strange when operands are negative
I accidentally stumbled upon a strange behavior in python.
Typing this peace of code in repl.
In [29]: 7 /-3
Out[29]: -3
Can find nowhere any reasonably explanation for this result.
What is ...
-1
votes
0answers
17 views
Want to use lxml XPATH intead of this shiity lengthy code
if all.nodeName == 'p:cSld':
new2 = all.childNodes
for all1 in new2:
if all1.nodeName == 'p:spTree':
...
-1
votes
2answers
43 views
How can I find object with Selenium?
Thats my code, I was changing, fixing, trying another modules, but still can not get a respond with my div text extracted.
import selenium
from selenium import webdriver
driver = ...
0
votes
0answers
15 views
Python: parsing files separated by tabs and spaces
I have some files to parse which are poorly formatted. One of the issues I face is that the fields in the file are separated by spaces, tabs or spaces & tabs.
Could someone explain how I can ...
0
votes
0answers
15 views
openstack-nova dose not send logs to syslog facility specified
I want to nova to send its logs to rsyslog for later use.
I just add some configurations to /etc/nova/nova.conf
use_syslog = True
syslog_log_facility = LOG_LOCAL1
verbose = False
debug = False
I ...
0
votes
1answer
45 views
How do I write a compare function?
def compare(a, b):
"""
Return 1 if a > b, 0 if a equals b, and -1 if a < b
>>> compare (5, 7)
1
>>> compare (7, 7)
0
>>> compare (2, 3)
...
0
votes
0answers
23 views
How to open an url on android through pygame
I want to open an url from my application running on android.
I am using pygame subset for my application.
There is one button on my app which, if clicked, will open an url in an android browser.
...
0
votes
0answers
27 views
How to fill external memory/SD Card of an android device using python
I am trying to fill the external micro SD Card of an android device using python, but no luck. I need options such as passing an argument such as 300mb or 500mb, and memory gets filled upto that ...
-1
votes
2answers
75 views
Can this Python function to test for prime numbers be extended to higher numbers? [closed]
Here's the relevant code, using a Sieve of Erasthones method (the last part of a larger function with argument x):
sieve = [num for num in range(2, int(sqrt(x)) + 2)]
count = 0
for item in sieve:
...
2
votes
1answer
43 views
threading.Timer()
i have to write a program in network course that is something like selective repeat but a need a timer. after search in google i found that threading.Timer can help me, i wrote a simple program just ...
0
votes
1answer
31 views
How to executes cmd command using Python on Win 7 with admin
in python, i want to executes cmd command:
os.system("netsh interface set interface \"Local Area Connection\" disable")
to disconnect internet network. But, with my account, it report, interface ...
0
votes
1answer
24 views
Many to one relation not working in fields.selection() in openerp
I need to create a selection field in openerp , it's values should load from a function and also this field needs many2one relation with another table.I have created the selection field and values are ...
0
votes
2answers
34 views
If line not present in the text file - python
I have a list with a set of strings and another dynamic list:
arr = ['sample1','sample2','sample3']
applist=[]
I am reading a text file line by line, and if a line starts with any of the strings in ...
-3
votes
0answers
56 views
1000th prime using functions in Python that's not working
I made a function to find primes, and I looked at videos and google but just can't quite figure out how to make this filter option work. It works up to 1000, but I'm trying to find the 1000th prime ...
0
votes
0answers
43 views
pygame.error: File is not a Windows BMP file
Running:
Mac OSX mountain Lion 10.8.3
Python 2.7
Pygame 1.9.2
I have a simple python pygame program that displays an image on the screen, this works great when I run it in my IDE. The problem comes ...
0
votes
1answer
28 views
python recursive function error RuntimeError: maximum recursion depth exceeded
I have this script:
def number_of_occurences(c, message):
position = message.find(c)
if position == -1:
return 0
else:
if len(message[position:]) == 0:
return position
else:
...
0
votes
1answer
13 views
Error installing Mezzanine cms on Windows 7
I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here.
I recreated my virtualenv, but i still get this error
i know that error is caused by pil ...

