https://github.com/godaddy/tracktoberfest
Hacktoberfest contribution tracker
https://github.com/godaddy/tracktoberfest
hacktoberfest
Last synced: 5 months ago
JSON representation
Hacktoberfest contribution tracker
- Host: GitHub
- URL: https://github.com/godaddy/tracktoberfest
- Owner: godaddy
- License: mit
- Archived: true
- Created: 2020-10-09T16:00:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-05-08T17:13:00.000Z (about 1 year ago)
- Last Synced: 2025-09-30T23:37:32.151Z (9 months ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# tracktoberfest
Retrieve Hacktoberfest contributions for a list of GitHub usernames.
Their "validity" is calculated based on the rules enumerated in the Digital
Ocean blog post:
Example:
```console
> tracktoberfest tarkatronic
Retrieving contributions for tarkatronic...
tarkatronic
Counted! - https://github.com/godaddy/tartufo/pull/111
Counted! - https://github.com/godaddy/tartufo/pull/109
Counted! - https://github.com/godaddy/tartufo/pull/103
```
## Installation
```console
> pip install tracktoberfest
```
## Usage
In order to use this library you will need to expose a environment variable named `GITHUB_TOKEN`
to do this you can create a `.env` file and export the variable
```bash
export GITHUB_TOKEN='foo'
```
before running the application in your terminal run:
```bash
source .env
```
After that you can run:
```bash
tracktoberfest tarkatronic
```