Last active
June 10, 2018 18:32
-
-
Save IuryAlves/b01f1b082fa0d3a2b2cb87bc3caa46da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
""" | |
pip install requests beautifulsoup4 | |
""" | |
import requests | |
from bs4 import BeautifulSoup | |
DOMAIN = 'https://github.com' | |
def filter_github_files(tag): | |
return ( | |
tag.name == 'a' and | |
tag.attrs.get('class', '') == ['js-navigation-open'] | |
and not tag.attrs.get('rel') | |
) | |
def is_folder(link): | |
return 'tree' in link | |
def find_files(url): | |
response = requests.get(url) | |
html_tree = BeautifulSoup(response.content, 'html.parser') | |
for element in html_tree.find_all(filter_github_files): | |
link = element.attrs['href'] | |
if is_folder(link): | |
yield from find_files(DOMAIN + link) | |
else: | |
yield link | |
def main(): | |
for url in find_files(DOMAIN + '/IuryAlves/bastion/'): | |
print(url) | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment