File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build and Publish
2+ on : [ push ]
3+ jobs :
4+ Explore-GitHub-Actions :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - name : Formatting
8+ - run : pip install black isort
9+ - run : black substack
10+ - run : isort substack
11+ - name : Build and Publish
12+ - run : pip install poetry
13+ - run : poetry version patch
14+ - run : poetry publish --build
Original file line number Diff line number Diff line change 1- # Welcome to Python Substack
1+ # Python Substack
22
3- Updated
3+ # Introduction
4+
5+ This is an unofficial library providing a Python interface for [ Substack] ( https://substack.com/ ) .
6+ I am in no way affiliated with Substack. It works with
7+ Python versions from 3.8+.
8+
9+ # Installation
10+
11+ You can install python-substack using:
12+
13+ $ pip install python-substack
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-substack"
3- version = " 0.0.2 "
3+ version = " 0.0.4 "
44description = " A Python wrapper around the Substack API."
55authors = [" Paolo Mazza <mazzapaolo2019@gmail.com>" ]
66license = " MIT"
@@ -17,8 +17,10 @@ keywords = ["substack"]
1717
1818[tool .poetry .dependencies ]
1919python = " ^3.8"
20- python-dotenv = " ^0.20.0 "
20+
2121requests = " ^2.28.1"
22+ python-dotenv = " ^0.20.0"
23+
2224
2325[tool .poetry .dev-dependencies ]
2426
You can’t perform that action at this time.
0 commit comments