Created
August 24, 2010 20:22
-
-
Save thanos/548240 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Usage: | |
| >python server.py PORT | |
| where PORT defaults 8000 | |
| Serves files from the current working directory | |
| ''' | |
| from SimpleHTTPServer import test as run | |
| if __name__ =='__main__': | |
| run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment