Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/karmek-k/managist
- Owner: karmek-k
- License: lgpl-3.0
- Created: 2021-03-23T12:22:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T12:54:04.000Z (over 3 years ago)
- Last Synced: 2023-06-30T14:32:55.662Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# managist
Python library for interacting with GitHub Gists
## Example
```python
from managist import Managistmg = Managist('your_access_token')
new_gist = mg.create_gist('Test gist title', 'Managist works!')
new_gist.save()
```