Skip to content

Commit 49af838

Browse files
full refactor to asyncio and new design pattern
1 parent 0957dd7 commit 49af838

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env
2-
follow_users.log
2+
follow_users.log
3+
/scraper_usernames/.env

scraper_usernames/scrape_it_from_github_user.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
load_dotenv()
99

1010
# Replace with your GitHub username and token
11-
username = dotenv.get("USERNAME") # The GitHub username to scrape
12-
token = dotenv.get("GITHUB_TOKEN") # The personal access token to authenticate to the GitHub API
11+
username = dotenv.get("USERNAME") #
12+
token = dotenv.get("GITHUB_TOKEN") #
1313

1414
# GitHub API endpoint and headers
1515
api_url = f"https://api.github.com/users/{username}/following"

0 commit comments

Comments
 (0)