Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karmek-k/managist

Python library for interacting with GitHub Gists (work in progress)
https://github.com/karmek-k/managist

Last synced: 3 days ago
JSON representation

Python library for interacting with GitHub Gists (work in progress)

Awesome Lists containing this project

README

        

# managist

Python library for interacting with GitHub Gists

## Example

```python
from managist import Managist

mg = Managist('your_access_token')

new_gist = mg.create_gist('Test gist title', 'Managist works!')
new_gist.save()
```