├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── blackjump.py ├── img ├── img.png ├── img_1.png └── img_2.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | .idea/ 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/README_en.md -------------------------------------------------------------------------------- /blackjump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/blackjump.py -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/img/img.png -------------------------------------------------------------------------------- /img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/img/img_1.png -------------------------------------------------------------------------------- /img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarihub/blackjump/HEAD/img/img_2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | urllib3 3 | requests 4 | websockets 5 | beautifulsoup4 --------------------------------------------------------------------------------