├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── Utils.py ├── account.txt ├── anycaptcha.py ├── config.json ├── images ├── 01.png ├── 02.png └── info.txt ├── main.py ├── proxy.txt └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/README.md -------------------------------------------------------------------------------- /Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/Utils.py -------------------------------------------------------------------------------- /account.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/account.txt -------------------------------------------------------------------------------- /anycaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/anycaptcha.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/config.json -------------------------------------------------------------------------------- /images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/images/01.png -------------------------------------------------------------------------------- /images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/images/02.png -------------------------------------------------------------------------------- /images/info.txt: -------------------------------------------------------------------------------- 1 | some photo for readme 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/main.py -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatrixTM/OutlookGen/HEAD/requirements.txt --------------------------------------------------------------------------------