├── .github └── workflows │ └── python-package.yml ├── .idea ├── .gitignore ├── AutoMSACC.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── MS-ACC-CREATOR.py ├── README.md ├── msedgedriver.exe └── requirements.txt /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AutoMSACC.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.idea/AutoMSACC.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /MS-ACC-CREATOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/MS-ACC-CREATOR.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/README.md -------------------------------------------------------------------------------- /msedgedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KawakazeNotFound/AutoMSACC/HEAD/msedgedriver.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==4.3.0 2 | requests 3 | --------------------------------------------------------------------------------