├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── auth └── selenium.py ├── imgs ├── 1.png ├── 2.png └── 3.png ├── main.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/README.md -------------------------------------------------------------------------------- /auth/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/auth/selenium.py -------------------------------------------------------------------------------- /imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/imgs/1.png -------------------------------------------------------------------------------- /imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/imgs/2.png -------------------------------------------------------------------------------- /imgs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/imgs/3.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnotype/xxt/HEAD/requirements.txt --------------------------------------------------------------------------------