Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Detailed Tutorial: Crawling GitHub Repository Folders Without API

1. Setup and Installation Before you start, ensure you have: Python: Version 3.7 or higher installed. Libraries: Install requests and BeautifulSoup. pip install requests beautifulsoup4 Editor: Any Python-supported IDE,…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




1. Setup and Installation



Before you start, ensure you have:





  1. Python: Version 3.7 or higher installed.


  2. Libraries: Install requests and BeautifulSoup.




   pip install requests beautifulsoup4








  1. Editor: Any Python-supported IDE, such as VS Code or PyCharm.









2. Analyzing GitHub HTML Structure



To scrape GitHub folders, you need to understand the HTML structure of a repository page. On a GitHub repository page:





  • Folders are linked with paths like /tree/<branch>/<folder>.


  • Files are linked with paths like /blob/<branch>/<file>.



Each item (folder or file) is inside a <div> with the attribute role="rowheader" and contains an <a> tag. For example:




<div role="rowheader">
<a href="/owner/repo/tree/main/folder-name">folder-name</a>
</div>












3. Implementing the Scraper






3.1. Recursive Crawling Function


The script will recursively scrape folders and print their structure. To limit the recursion depth and avoid unnecessary load, we’ll use a depth parameter.




import requests
from bs4 import BeautifulSoup
import time

def crawl_github_folder(url, depth=0, max_depth=3):
"""
Recursively crawls a GitHub repository folder structure.

Parameters:
- url (str): URL of the GitHub folder to scrape.
- depth (int): Current recursion depth.
- max_depth (int): Maximum depth to recurse.
"""
if depth > max_depth:
return

headers = {"User-Agent": "Mozilla/5.0"}
response = requests.get(url, headers=headers)

if response.status_code != 200:
print(f"Failed to access {url} (Status code: {response.status_code})")
return

soup = BeautifulSoup(response.text, 'html.parser')

# Extract folder and file links
items = soup.select('div[role="rowheader"] a')

for item in items:
item_name = item.text.strip()
item_url = f"https://github.com{item['href']}"

if '/tree/' in item_url:
print(f"{' ' * depth}Folder: {item_name}")
crawl_github_folder(item_url, depth + 1, max_depth)
elif '/blob/' in item_url:
print(f"{' ' * depth}File: {item_name}")

# Example usage
if __name__ == "__main__":
repo_url = "https://github.com/<owner>/<repo>/tree/<branch>/<folder>"
crawl_github_folder(repo_url)












4. Features Explained





  1. Headers for Request: Using a User-Agent string to mimic a browser and avoid blocking.


  2. Recursive Crawling:


    • Detects folders (/tree/) and recursively enters them.

    • Lists files (/blob/) without entering further.




  3. Indentation: Reflects folder hierarchy in the output.


  4. Depth Limitation: Prevents excessive recursion by setting a maximum depth (max_depth).









5. Enhancements






5.1. Exporting Results


Save the output to a structured JSON file for easier usage.




import json

def crawl_to_json(url, depth=0, max_depth=3):
"""Crawls and saves results as JSON."""
result = {}

if depth > max_depth:
return result

headers = {"User-Agent": "Mozilla/5.0"}
response = requests.get(url, headers=headers)

if response.status_code != 200:
print(f"Failed to access {url}")
return result

soup = BeautifulSoup(response.text, 'html.parser')
items = soup.select('div[role="rowheader"] a')

for item in items:
item_name = item.text.strip()
item_url = f"https://github.com{item['href']}"

if '/tree/' in item_url:
result[item_name] = crawl_to_json(item_url, depth + 1, max_depth)
elif '/blob/' in item_url:
result[item_name] = "file"

return result

if __name__ == "__main__":
repo_url = "https://github.com/<owner>/<repo>/tree/<branch>/<folder>"
structure = crawl_to_json(repo_url)

with open("output.json", "w") as file:
json.dump(structure, file, indent=2)

print("Repository structure saved to output.json")









5.2. Error Handling


Add robust error handling for network errors and unexpected HTML changes:




try:
response = requests.get(url, headers=headers, timeout=10)
response.raise_for_status()
except requests.exceptions.RequestException as e:
print(f"Error fetching {url}: {e}")
return









5.3. Rate Limiting


To avoid being rate-limited by GitHub, introduce delays:




import time

def crawl_with_delay(url, depth=0):
time.sleep(2) # Delay between requests
# Crawling logic here












6. Ethical Considerations





  • Compliance: Adhere to GitHub’s Terms of Service.


  • Minimize Load: Respect GitHub’s servers by limiting requests and adding delays.


  • Permission: Obtain permission for extensive crawling of private repositories.









7. Complete Code



Here’s the consolidated script with all features included:




import requests
from bs4 import BeautifulSoup
import json
import time

def crawl_github_folder(url, depth=0, max_depth=3):
result = {}

if depth > max_depth:
return result

headers = {"User-Agent": "Mozilla/5.0"}
try:
response = requests.get(url, headers=headers, timeout=10)
response.raise_for_status()
except requests.exceptions.RequestException as e:
print(f"Error fetching {url}: {e}")
return result

soup = BeautifulSoup(response.text, 'html.parser')
items = soup.select('div[role="rowheader"] a')

for item in items:
item_name = item.text.strip()
item_url = f"https://github.com{item['href']}"

if '/tree/' in item_url:
print(f"{' ' * depth}Folder: {item_name}")
result[item_name] = crawl_github_folder(item_url, depth + 1, max_depth)
elif '/blob/' in item_url:
print(f"{' ' * depth}File: {item_name}")
result[item_name] = "file"

time.sleep(2) # Avoid rate-limiting
return result

if __name__ == "__main__":
repo_url = "https://github.com/<owner>/<repo>/tree/<branch>/<folder>"
structure = crawl_github_folder(repo_url)

with open("output.json", "w") as file:
json.dump(structure, file, indent=2)

print("Repository structure saved to output.json")












Key Notes





  • Recursive Depth: The depth parameter prevents infinite recursion.


  • Rate Limiting: Avoid rapid requests to prevent IP bans. Use time delays (time.sleep) if necessary.


  • HTML Updates: Adjust selectors (div[role="rowheader"] a) as GitHub updates its structure.









Enhancements





  • Export Results: Save crawled data to JSON or CSV.


  • Parallel Requests: Use libraries like asyncio or concurrent.futures for faster crawling.


  • Error Handling: Handle network issues and retries gracefully.






By following this guide, you can efficiently crawl folder structures on GitHub repositories programmatically. Adapt the solution for your specific requirements while adhering to ethical practices.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Detailed Tutorial: Crawling GitHub Repository Folders Without API

Thematisch verwandte Begriffe: Detailed, Tutorial, Crawling, GitHub · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-18163 | IBM Financial Transaction Manager (FTM) for RedHat OpenShift could allow…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick