Python: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
== |
== Links == |
||
* [http://docs.python.org/tutorial/ The Python Tutorial] |
* [http://docs.python.org/tutorial/ The Python Tutorial] |
||
* [http://docs.python.org/2/index.html Python 2.7.6 docs] |
|||
* Nice example of generating / testing regex in Python (with nice / small test framework) [http://nbviewer.ipython.org/url/norvig.com/ipython/xkcd1313.ipynb] |
* Nice example of generating / testing regex in Python (with nice / small test framework) [http://nbviewer.ipython.org/url/norvig.com/ipython/xkcd1313.ipynb] |
||
== Reference == |
|||
* [http://docs.python.org/release/1.5.1p1/tut/range.html range] |
|||
== Tips == |
== Tips == |
Revision as of 08:20, 13 February 2014
Links
- Nice example of generating / testing regex in Python (with nice / small test framework) [1]
Reference
Tips
Simple HTTP Server
It's very easy to setup an ad-hoc HTTP server with Python. Just open a shell in a folder with some contents to share, and type:
python -m SimpleHTTPServer
More available at http://docs.python.org/2/library/internet.html (see BaseHTTPServer and CGIHTTPServer).