Python wrapper for CodeChef API 1.0.0
Goal of this library is to map codechef's endpoints one-to-one.
Dependencies:
- requests
Install via pip:
$ pip install pycodechef
Install from source:
$ git clone https://github.com/appi147/pycodechef.git
$ cd pycodechef
$ python setup.py install
from pycodechef import Codechef
c = Codechef("client_id", "client_secret")
r = c.method_name(parameters)
Client id and client secret can be found here: https://developers.codechef.com/
Contributions are welcome