5
votes
Python Library Path
You can also make additions to this path with the PYTHONPATH environment variable at runtime, in addition to:
import path
sys.path.append('/home/user/python-libs')
…
2
votes
Which is more preferable to use in Python: lambda functions or nested functions (’def’) ?
The primary use of lambda has always been for simple callback functions, and for map, reduce, filter, which require a function as an argument. With list comprehensions becoming the norm, and the ad …
3
votes
Simple regex-based lexer in Python
It's possible that combining the token regexes will work, but you'd have to benchmark it. Something like:
x = re.compile('(?P<NUMBER>[0-9]+)|(?P<VAR>[a-z]+)')
a = x.matc …
2
votes
Python language API
The standard python library is fairly well documented. Try jumping into python and importing a module say "os" and running:
import os
help(os)
This reads the do …
7
votes
Python web development - with or without a framework
You might consider using something like web.py which would be easy to distribute (since it's small) and it would also be easy to adapt your other tool …
