Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 656 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 656 Bytes

Gist Control

License: MIT

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

Installation

Require Python >=3.6 (f-strings)

pip3 install gist-control

Usage

# app.py

import os
from dotenv import load_dotenv
load_dotenv()

from gist_control import Gist


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

Check examples here