Metadata-Version: 2.1
Name: CodeforcesApiPy
Version: 1.2.0
Summary: Implementation of codeforces.com API
Home-page: https://github.com/VadVergasov/CodeforcesApiPy
Author: VadVergasov
Author-email: vadim.vergasov2003@gmail.com
License: MIT
Keywords: codeforces api python
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: lxml

Usage
==========

Installing
----------

With pip:

```bash
pip install CodeforcesApiPy
```

From repository:

```bash
git clone https://github.com/VadVergasov/CodeforcesApiPy.git
cd codeforcesapipy
python3 setup.py install
```

Using
---------

```python
import codeforces_api

cf_api = codeforces_api.CodeforcesApi(api_key, secret) #Authorized access.
anonim_cf_api = codeforces_api.CodeforcesApi() #Unauthorized access.

parser = codeforces_api.CodeforcesParser() #Parse some info.
```


