Skip to content

Instantly share code, notes, and snippets.

@omz
Created November 15, 2012 01:41
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save omz/4076111 to your computer and use it in GitHub Desktop.
Save omz/4076111 to your computer and use it in GitHub Desktop.
install_xmlrpclib
# install missing xmlrpclib module
import requests
r = requests.get('http://hg.python.org/cpython/raw-file/7db2a27c07be/Lib/xmlrpclib.py')
with open('xmlrpclib.py', 'w') as f:
f.write(r.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment