1
vote
0answers
5 views
How can I deal with python eggs for multiple platforms in one location?
We have a common python installation for all of our systems in order to ensure every system has the same python installation and ease configuration issues. This installation is located on a shared …
0
votes
1answer
8 views
Django Official Tutorial Part 1 index out of bound error
Hi,
I started learning Django recently and am having a strange problem with the tutorial. Everything was going fine until I started playing with the interactive shell and then I got an error whenever …
3
votes
2answers
38 views
How can I “zip sort” parallel numpy arrays?
If I have two parallel lists and want to sort them by the order of the elements in the first, it's very easy:
>>> a = [2, 3, 1]
>>> b = [4, 6, 2]
>>> a, b = …
0
votes
2answers
17 views
Is there any way to make Django’s get_or_create() to create an object without saving it to database?
When using Django's get_or_create(), when created=True, is there any way to
make it so that it creates an object without saving it to DB?
I want to take the newly created object, do some validation …
0
votes
0answers
8 views
libnet creates UDP packets with invalid checksums
I'm using pylibnet to construct and send UDP packets. The UDP packets I construct in this way all seem to have invalid checksums. Example:
# python
Python 2.4.3 (#1, Sep 3 2009, 15:37:12)
[GCC …
2
votes
1answer
156 views
What types of solutions are applicable to real-time controller tasks? [closed]
This question now lives at AskSci.com. Please answer there if you want to respond.
I'm referring to controller tasks where a computer program controls some agent in a simulated world and must achieve …
1
vote
2answers
26 views
Are there any matrix math modules compatible with Python 3.x?
When I began this project, I thought it would be easy to get libraries for common stuff like matrix math, so I chose to work in Python 3.1- it being the most recent, updated version of the language. …
1
vote
2answers
55 views
Google App Engine
Hi,
I am thinking about using Google App Engine.It is going to be a huge website. In that case, what is your piece of advice using Google App Engine. I heard GAE has restrictions like we cannot …
0
votes
5answers
102 views
Remove whitespace in Python using string.whitespace
Python's string.whitespace is great:
>>> string.whitespace
'\t\n\x0b\x0c\r '
How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex?
For …
0
votes
2answers
22 views
Minimal production Django server on Windows
Hi,
I need to deploy a small Django app to be used in a small intranet. Concurrency and speed are non issues because there will be, at most, 10 users (and I bet that there will be almost no …
2
votes
0answers
15 views
Python image writer 3.*
Im looking for a library/snippet to write image files (bmp) to disk. PIL site says it doesnt work for 3.1
At the moment im writing a html file which uses javascript canvas to display result...
0
votes
1answer
12 views
Validate that atleast one modelfield has value in Django admin
Given the following model, how do I require that atleast one of the two fields has been given a value?
class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
…
1
vote
5answers
66 views
How to implement time event scheduler in python?
In python how to implement a thread which runs in the background (may be when the module loads) and calls the function every minute Monday to Friday 10 AM to 3 PM. For example the function should be …
19
votes
8answers
9k views
How do I check if a file exists using Python?
How do I check if a file exists, using Python. without using a try: statement?
0
votes
5answers
145 views
Running Python from the Windows Command Line
How do I run a Python file from the Windows Command Line (cmd.exe) so that I won't have to re-enter the code each time?
