1
vote
Automate firefox with python?
I use Selenium RC. All my tests are written in Python and are run with test suite.
One minor thing is that You either …
4
votes
Getting random row through SQLAlchemy
This is very much database specifc issue.
I know that PostgreSQL and MySQL has abbility to order by random function, so You can use this in SQLAlchemy:
select.order_by(func. …
1
vote
Python library for rendering HTML and javascript
Only way I know to accomplish this would be to drive real browser, for example using selenium-rc.
…
1
vote
Execute arbitrary python code remotely - can it be done?
Stackless has ability to pickle and unpickle running code, maybe using that functionality there is possibility to …
3
votes
Setting up Django on an internal server (os.environ() not working as expected?)
In your settings you have to point go actual egg file, not directory where egg file is located. It should look something like:
sys.path.append('/path/to/flup/egg/flup-1.0.1-py2.5.eg …
0
votes
Issues with BeautifulSoup parsing
I tested this script on BeautifulSoup version '3.0.7a' and it returns what appears to be correct output. I don't know what changed between '3.0.7a' and '3.1.0.1' but give it a try.
…
0
votes
How to use a custom site-package using pth-files for Python 2.6?
According to documentation you should put paths to .pth file so maybe entering:
C:\Users\wierob\lib\python2.6
…
