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.
0
votes
0answers
3 views
Check if all of the elements in one numpy array exist in a second numpy array
Does anyone have a more numpy-like way of accomplishing this:
def uneven_compare(array1, array2):
return numpy.all([numpy.any(array2 == elem) for elem in array1])
I just want to check if all of ...
0
votes
0answers
6 views
code stops after few hours and raspberry py freezes. (pymodbus + rs485 + raspberry pi) python code
i am using pymodbus to collect some data from sensors 4 reading every sec. program is in continuous loop but the problem is raspberry pi freezing every few hours(60 hr).
code stops automatically. ...
-1
votes
0answers
16 views
Monitor visited sites from iptables in python
I have to make script in python to monitor iptables on port 80 and get URLs of visited websites from it. I was searching for some time and can't get any useful information on the topic.
Is that ...
0
votes
1answer
25 views
What is a good way to merge non intersecting sets in a list to end up with denseley packed sets?
I'm currently doing this by using a sort of a greedy algorithm by iterating over the sets from largest to smallest set. What would be a good algorithm to choose if i'm more concerned about finding the ...
0
votes
1answer
23 views
Python File Exists
I'm new to python and just can't seem to get the code I'm writing to carry on processing if a file doesn't exist in the directory I point it to. Basically, I'm opening each text file to make a small ...
0
votes
4answers
34 views
Strings and appending in Python
In Python a string is immutable. I find the function string.join() could add the value to a string but it seems the following doesn't work.
#coding: utf-8
if __name__ == "__main__":
str = "A fox ...
0
votes
1answer
14 views
Django 1.5 CSS not applied
Im having some issues in applying my CSS.
Here is my project structure:
project
- app
- project
- static
- css
- style.css
- template
- index.html
My settings ...
0
votes
2answers
15 views
How can I add a column to multiple tables at once in MySQL Workbench?
I have a MySQL Workbench model (diagram) that belongs to a Ruby on Rails application. I now need to add the created_at and updated_at timestamp columns to each of the tables. What is a quick and easy ...
0
votes
1answer
9 views
Output to a file after running Python script line by line and spaces between columns
I am trying to run a python script which reads the contents of the input file and need to display in a line by line ( row by row) format in the output file.
Script is as ...
0
votes
0answers
19 views
Python recursive generators performance
In python, could anyone explain how you would go about changing a recursive function into a generator?
There is a second problem however, the performance seems to be degrading.
For example, here is ...
0
votes
0answers
2 views
How to force sqlite3 insert random byte arrays?
I want to write vectors of arbitrary ints into an sqlite3 db. Here's a sample of what I do :
packed = struct.pack("ii", [7739119, 962812])
print packed # prints '\xef\x16v\x00\xfc\xb0\x0e\x00'
...
0
votes
0answers
5 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
1answer
16 views
Parsing a WKT-file
I have a WKT-file containing some geometric data.
Here a sample (a polyline):
s = "ST_GeomFromText( 'LINESTRING( 11.6614 48.0189, 11.6671 48.011, 11.6712 48.0051, 11.6747 48.0001, 11.6777 47.9956, ...
0
votes
0answers
6 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
8 views
How to create a preview of the documents and the ability to edit their content?
I store in database document files (.txt and some .doc). How to create a preview of the documents and the ability to edit their content?(just like in a text editor) Does anyone know the general ...
0
votes
1answer
19 views
Understanding mutability in Python
I have this snippet:
a = [1,2,3]
b = a
b = [4,5,6] # a doesnt change
and this:
a = [1,2,3]
b = a
b[0] = 5 # a also changes
How is b's initialization playing a part in deciding the mutability of ...
0
votes
2answers
22 views
Initialize instance variable in a mixin
I want to provide some functionality to classes using mixin. The functionality uses some additional per-object state. I was wondering what is the cleanest way to initialize this local state. Consider ...
0
votes
0answers
6 views
sqlalchemy bulk update performance problems
I need to increment values in a column periodically with data I receive in a file. The table has > 400000 rows. So far, all my attempts result in very poor performance.
I have written an experiment ...
0
votes
2answers
16 views
python doc for docstring
I want to have a tool which can generate documentation from the source code comments, I found a tool named pythondoc, it can generate HTML or XML from python source codes, but it doesn't support ...
0
votes
2answers
11 views
Kill subprocess in Python in another function?
I'm very new in Python. This is my code:
def start(self, widget):
s = subprocess.Popen('myprocess')
def stop(self, widget):
#what to put here?
I'm on Ubuntu. In the first function I ...
1
vote
2answers
17 views
How to debug a Python seg fault?
How can I debug a Python seg fault?
We are trying to run our python code on SuSE 12.3. We get reproducible seg faults. The python code works on other platforms with out seg fault for years.
We only ...
0
votes
0answers
6 views
Cyrillic text in MonkeyRunner
I try to type cyrillic text on my Android device using MonkeyRunner. But it onle types nothing or "?".
This commands:
print (sys.getdefaultencoding())
print (locale.getpreferredencoding())
print ...
0
votes
0answers
10 views
Python BaseHTTPServer.HTTPServer - callback for start and stop event
Reference: http://docs.python.org/2/library/basehttpserver.html
I have the following code snippet which uses Python BaseHTTPServer to run a basic HTTP server.
from BaseHTTPServer import HTTPServer
...
0
votes
0answers
24 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 ...
1
vote
0answers
15 views
How to integrate scripting capabilities in my App (like SL4A)
I need to add scripting layer to my android App. So I can remotely prepare a script that my app download form a web service and execute on the user device.
I found a interesting project called ...
1
vote
1answer
15 views
Tkinter variable definition, which is more desirable?
I am new to Tkinter and I was wondering which of the following way to set variables is more desirable:
class App():
def __init__(self,master):
self.var1 = StringVar()
<filler>
...
0
votes
2answers
18 views
Error while runing the django project in web browser
I am getting this error when i run the django file in web browser. I created a django project named FirstBlog and started an app named blog. i also changed the view file, model file and url file and ...
0
votes
0answers
26 views
How to deal with the naming convention gap between the frontend (camelCase) and the backend (lower_case_with_underscores)?
The current project that I am working on uses angularjs/javascript for its frontend and django/python for its backend. The combination of the frameworks/languages that I chose works out pretty well, ...
2
votes
3answers
45 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 ...
1
vote
0answers
28 views
Parsing very large xml file (18.5 GB) in python using iterparse in lxml with limited RAM. Is there a way?
I am trying to parse a large XML data dump (18.5 GB) with limited RAM (~6 GB). We only want to grab a few tags from each object and make a hashtable with those tags. We are currently using iterparse ...
0
votes
1answer
17 views
Can someone please explain this error - “Runtime error: dictionary size changed during iteration”?
def find_the_best_solution(shipping_request, list, current_solution, best_shipping_solution):
if shipping_request == {}:
return current_solution
for item in shipping_request:
...
0
votes
0answers
14 views
How to find specific key:value 2 from python pymongo, MongoDB
My mongo db sample is:
MONGO
> db.pages.findOne()
{
"_id" : ObjectId("519b6e81661b820d0e5d4f83"),
"papers" : {
"text" : "RT @sydest: Sütaş reklamlarındaki inekleri erkekler ...
0
votes
1answer
19 views
PyCharm can't see class from pyTables
I've actually asked this question for PyDev and got a working answer: PyDev can't see class from PyTables
Basically, pytables must be added to builtins, and there is an option in pydev for this. ...
0
votes
0answers
10 views
Get original pytest fixtures passed as parameters to function in decorator
Assume test function and fixture:
class Test_Settings():
@pytest.fixture
def fixture1(self):
self.param = 'something'
class Test_Everything(Test_Settings):
def ...
0
votes
0answers
3 views
Creating multiple instances of a class in PyQt seems not to work
Here i have some code where i don't know why i can't create multiple instances of a class. I am new to PyQt or Systray-handling, so I guess my problem is a very easy one.
My problem is, that if i ...
2
votes
2answers
55 views
python: what prevents from object destroy?
If you define a class instance in a function, when the function exits, the instance will be automatically destroyed due to out of scope. This can be simply verified by a small program:
class ...
1
vote
1answer
24 views
How to get a value from a cell of a data frame?
I have constructed a condition that extract exactly one row from my data frame:
d2 = df[(df['l_ext']==l_ext) & (df['item']==item) & (df['wn']==wn) & (df['wd']==1)]
Now I would like to ...
0
votes
0answers
15 views
django-multiuploader: failed to find libmagic
I installed django-multiuploader and follow the instructions. Got error message in browser:
ImportError at /competition-big/big1/upload
failed to find libmagic. Check your installation
Here is ...
0
votes
0answers
26 views
Python: ImportError: No module named logging
I am trying to import logging in Monkeyrunner environment but it always respond "ImportError: No module named logging" ?
1
vote
3answers
37 views
Converting strings to floats in a DataFrame
How to covert a DataFrame column containing strings and NaN values to floats. And there is another column whose values are strings and floats; how to convert this entire column to floats.
0
votes
0answers
20 views
How to determine what date time format the system is using?
For my centralized logging purposes for an application that will be used over the network(no server side application involved, yet) I am required to also store the time at which a particular event ...
0
votes
0answers
9 views
How to add username and e-mail option for password reset in Django password reset?
I am using Django in-build password to allow users to reset the password. My password_reset_form.html looks like this:
{% block title %}Reset Password{% endblock %}
{% block content %}
...
0
votes
2answers
24 views
Running a script 24/7
I am tyring to find a solution for running a python script of mine 24/7.
Research led me to the conclusion that I probably need a CGI hosting.
But suppose that I have one (and which type of ...
0
votes
1answer
7 views
Can't upgrade HDF5 using yum on CentOS-5 because of Missing Dependency
I'm having trouble upgrading hdf5 to 1.8.7 on CentOS-5. The error I get is below. I need to upgrade so I can install PyTables.
I think it's because my version of gdal doesn't support the newer ...
0
votes
1answer
50 views
Python if statement not working
I have an if/else statement in python, and I want to do nothing when it goes to the else statement.
I am reading a list of words, finding the palindromes (eg 'abba') and printing them out. It ...
0
votes
0answers
43 views
Python function not being called properly from python script
I am trying to automate some data to plot in python. I have a BASH script that moves the files in to the right directory, and then calls the following script:
python ...
5
votes
3answers
47 views
How to check all the elements in a list that has a specific requirement?
I'm doing a homework about a heart game with different version. It says that if we are given a list mycards that contains all the cards that player currently hold in their hands. And play is a single ...
0
votes
1answer
8 views
How to install the Pyinstaller on Win 7
I am using win7 to install the PyInstaller.
I have tried the method accroding to (How to install PyInstaller? )but I failed and there is the log,is there anything wrong?
...
1
vote
3answers
33 views
Saving x,y coordinates in python
I am generating hundreds of lines (x,y coordinates) output in a for loop. What would be the easy way to save them into a txt file at the end of the process?
Thanks
Example of output:
…
100 23
112 ...
1
vote
0answers
12 views
Local Profiles on servers containing lot of files under Python Eggs folder
We have a problem on citrix servers. Explaination is as below.
When the user logs into these citrix servers, the usual size of the local profile should be around 150 MB. However, we faced issue that ...

