pip pip is a command to manage Python packages
curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
$ pip install --upgrade pip
$pip search package name
json https://docs.python.org/2/library/json.html
import json
FILEIN = 'sample_in.json'
f = open(FILEIN, 'r')
data = json.load(f)
f.close()
Recommended Posts