Build the python requests library

This commit is contained in:
Cheng Zhao 2015-07-03 14:23:42 +08:00
parent e95ee4775e
commit 89b22db618
4 changed files with 17 additions and 1 deletions

View file

@ -1,7 +1,13 @@
#!/usr/bin/env python
import json
import os
import re
import sys
sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..', '..',
'vendor', 'requests', 'build',
'lib')))
import requests
GITHUB_URL = 'https://api.github.com'