-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add ability to write to Google Sheets and local CSV. - Google Sheets writing respects Google API write limits for unpaid account. - Update README. - Version bump.
- Loading branch information
Showing
5 changed files
with
170 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ __pycache__ | |
|
||
.env | ||
*.csv | ||
*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,17 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "crevettes" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
readme = "README.md" | ||
requires-python = ">=3.9.9" | ||
description = "A Python utility to capture a thread and commends for a given Reddit thread." | ||
authors = [ | ||
{ name="Nick Ruest", email="[email protected]" } | ||
] | ||
dependencies = ["praw", "python-dotenv"] | ||
dependencies = [ | ||
"praw>=7.8.1", | ||
"python-dotenv" | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["crevettes"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters