Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add authentication to GitHub fetch script #139

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/1-fetch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,5 @@ jobs:
run: |
./scripts/1-fetch/github_fetch.py \
--enable-save --enable-git
env:
GH_TOKEN: ${{ secrets.BOT_TOKEN }}
11 changes: 11 additions & 0 deletions env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# This file must be copied to .env and the appropriate variables populated.


# GitHub

# https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api#primary-rate-limit-for-authenticated-users
#
# https://docs.github.com/en/rest/authentication/authenticating-to-the-rest-api

# GH_TOKEN =


## GCS (Google Custom Search)

# https://developers.google.com/custom-search/v1/introduction
Expand All @@ -21,7 +30,9 @@

# GCS_CX =


## Flickr

# "The flickr developer guide: https://www.flickr.com/services/developer/"

# FLICKR_API_KEY =
Expand Down
9 changes: 6 additions & 3 deletions scripts/1-fetch/github_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

# Constants
FILE1_COUNT = os.path.join(PATHS["data_phase"], "github_1_count.csv")
GH_TOKEN = os.getenv("GH_TOKEN")
GITHUB_RETRY_STATUS_FORCELIST = [
408, # Request Timeout
422, # Unprocessable Content
# (Validation failed, or the endpoint has been spammed)
422, # Unprocessable Content (Validation failed, or endpoint spammed)
429, # Too Many Requests
500, # Internal Server Error
502, # Bad Gateway
Expand Down Expand Up @@ -94,7 +94,10 @@ def get_requests_session():
)
session = requests.Session()
session.mount("https://", HTTPAdapter(max_retries=max_retries))
session.headers.update({"Accept": "application/vnd.github+json"})
headers = {"accept": "application/vnd.github+json"}
if GH_TOKEN:
headers["authorization"] = f"Bearer {GH_TOKEN}"
session.headers.update(headers)

return session

Expand Down