Metadata-Version: 2.1
Name: gist-control
Version: 1.1
Summary: Interact with Github Gists!
Home-page: https://github.com/ghrlt/gist-control
Author: Gaëtan Hrlt
Author-email: gaetan.hrlt+dev@gmail.com
Project-URL: Developer website, https://ghr.lt?f=gist-control
Project-URL: Bug Tracker, https://github.com/ghrlt/gist-control/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Gist Control

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
![](https://komarev.com/ghpvc/?username=ghrlt-gist-control&color=brightgreen&label=Views) 

Use this module to interact with (mostly yours) gists!

## Installation
Require Python >=3.6 (f-strings)

`pip3 install gist-control`


## Usage
```python
# app.py

import os
from dotenv import load_dotenv
load_dotenv()

from gist_control import Gist


gctrl = Gist( os.getenv("oauth-token") )
```
```env
# .env
oauth-token=ghp_bozbegz...ege
```

Check examples [here](https://github.com/ghrlt/gist-control/tree/master/examples/complete.py)
