forked from ma2za/python-substack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
11 lines (9 loc) · 387 Bytes
/
Copy path__init__.py
File metadata and controls
11 lines (9 loc) · 387 Bytes
1
2
3
4
5
6
7
8
9
10
11
"""A library that provides a Python interface to the Substack API."""
__author__ = "Paolo Mazza"
__email__ = "mazzapaolo2019@gmail.com"
__license__ = "MIT License"
__version__ = "1.0"
__url__ = "https://github.com/ma2za/python-substack"
__download_url__ = "https://pypi.python.org/pypi/python-substack"
__description__ = "A Python wrapper around the Substack API"
from .api import Api