├── README.md ├── assets ├── SNS_1.png ├── SNS_2.png ├── SNS_3.png └── SNS_4.png ├── banner.txt ├── modules ├── config.py ├── display.py ├── download.py ├── gui.py ├── list.py └── scraper.py ├── requirements.txt └── satnowscraper.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/README.md -------------------------------------------------------------------------------- /assets/SNS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/assets/SNS_1.png -------------------------------------------------------------------------------- /assets/SNS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/assets/SNS_2.png -------------------------------------------------------------------------------- /assets/SNS_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/assets/SNS_3.png -------------------------------------------------------------------------------- /assets/SNS_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/assets/SNS_4.png -------------------------------------------------------------------------------- /banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/banner.txt -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/display.py -------------------------------------------------------------------------------- /modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/download.py -------------------------------------------------------------------------------- /modules/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/gui.py -------------------------------------------------------------------------------- /modules/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/list.py -------------------------------------------------------------------------------- /modules/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/modules/scraper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich==13.7.1 2 | requests==2.31.0 3 | beautifulsoup4==4.12.3 4 | -------------------------------------------------------------------------------- /satnowscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANG13T/satnow-scraper/HEAD/satnowscraper.py --------------------------------------------------------------------------------