We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0957dd7 commit 49af838Copy full SHA for 49af838
.gitignore
@@ -1,2 +1,3 @@
1
.env
2
-follow_users.log
+follow_users.log
3
+/scraper_usernames/.env
scraper_usernames/scrape_it_from_github_user.py
@@ -8,8 +8,8 @@
8
load_dotenv()
9
10
# 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
+username = dotenv.get("USERNAME") #
+token = dotenv.get("GITHUB_TOKEN") #
13
14
# GitHub API endpoint and headers
15
api_url = f"https://api.github.com/users/{username}/following"
0 commit comments