Skip to content

Instantly share code, notes, and snippets.

@defnull
Created October 4, 2012 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save defnull/3836574 to your computer and use it in GitHub Desktop.
Save defnull/3836574 to your computer and use it in GitHub Desktop.
Easiest way to download bottle
wget http://bottlepy.org/bottle.py
curl http://bottlepy.org/bottle.py > bottle.py
pip install bottle
easy_install bottle
python -c 'import urllib; open("bottle.py", "wb").write(urllib.urlopen("http://bottlepy.org/bottle.py").read())'
python3 -c 'import urllib.request; open("bottle.py", "wb").write(urllib.request.urlopen("http://bottlepy.org/bottle.py").read())'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment