Search Results

1
vote

How do I protect python code?

The best you can do with Python is to obscure things. Strip out all docstrings Distribute only the .pyc compiled files. freeze it Obscure your constants ins …
0
votes

How can I translate the following filename to a regular expression in Python?

When working with regexes I find the Mochikit regex example to be a great help. /^b\d\d\dcv\d\d_test …
0
votes

Python Input/Output, files

The Pickle and cPickle modules may also be helpful to you. …
3
votes

Parsing GPS receiver output via regex in Python

You should also first check the checksum of the data. It is calculated by XORing the characters between the $ and the * (not including them) and comparing it to the hex value at the end. Yo …
1
vote

Python: Problem with overloaded constructors

That isn't valid python. The constructor for a Python class is def __init__(self, ...): and you cannot overload it. What you can do is use defaults for the arguments, e …
2
votes

Properly formatted example for Python iMAP email access?

Here is a script I used to use to grab logwatch info from my mailbox. Presented at LFNW 2008 - #!/usr/bin/env p …
0
votes

“import wx” fails after installation of wxpython on Windows XP

Try the ansi version instead of the unicode one. IIRC it needs to match the python 2.6 install to work properly. …
1
vote

Standard C or Python libraries to compute standard deviation of normal distribution.

Take a look at the sciPy Project, it should have what you need. …
6
votes

Python - Best library for drawing

wxPython is pretty easy to get up to speed with. The tutorial is fairly goo …
6
votes

Scripting language choice for initial performance

Because of your requirement for fast startup time and a calling frequency greater than 1Hz I'd recommend either staying with C and figuring out how to make it portable (not always as easy as a few …
9
votes

Create a List that contain each Line of a File

Its alot easier than that: List = open("filename.txt").readlines() This returns a list of each line in the file. …
3
votes

Difference between class foo and class foo(object) in Python

class foo(object): is the 'new' way of declaring classes. This change was made in python 2.2, see …
0
votes

How to impose a time limit on a whole script in Python

This is just a guess, but maybe wrap it with Threading or Multiprocessing? Have a timer thread that kills it when it times out. …