Metadata-Version: 2.4
Name: gh-reader
Version: 0.0.4
Summary: Extract github data into very reasonable tables.
Author-email: Michael Chow <mc_al_github@fastmail.com>
Project-URL: Homepage, https://github.com/machow/gh_reader
Keywords: template,packaging
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: jq
Requires-Dist: requests
Requires-Dist: importlib-resources
Requires-Dist: pyarrow
Requires-Dist: pyyaml
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-dotenv; extra == "dev"

## Extractors

| name | arguments | notes | incremental |
| ---- | --------- | ----- | ----------- |
| commits | owner, name | | supported |
| issues | owner, name | | supported |
| issues_pr | owner, name | same schema as issues | supported |
| labels | owner, name | | |
| pull_requests | ids | | supported |
| repository | owner, name | | |
| stargazers | owner, name | | |
| users | ids | | |
| issue_comments | ids | Also included in issue_events records | supported^† |
| issue_events | ids | | supported^† |
| issue_labels | ids | | supported  | 

> †: Updates to these records do not affect the updatedAt field of their parent
  issue. Because issue updates are used to pull event updates, edits to records
  like IssueComment events may not get picked up in incremental updates.
