├── .github └── workflows │ └── log.yml ├── README.md ├── __pycache__ └── main.cpython-310.pyc ├── config └── index.json ├── lib ├── __pycache__ │ ├── definitions.cpython-310.pyc │ ├── driverExecutor.cpython-310.pyc │ └── moduleChecker.cpython-310.pyc ├── definitions.py ├── driverExecutor.py └── moduleChecker.py ├── log.md ├── main.py ├── media └── screenshot │ ├── copiedcookies.jpg │ ├── copycookies.png │ ├── preview.png │ ├── selectsession.png │ └── session.png ├── requirements.txt ├── sessions └── .log └── webdriver ├── chromedriver.exe └── chromedriver.json /.github/workflows/log.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/.github/workflows/log.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /config/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/config/index.json -------------------------------------------------------------------------------- /lib/__pycache__/definitions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/__pycache__/definitions.cpython-310.pyc -------------------------------------------------------------------------------- /lib/__pycache__/driverExecutor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/__pycache__/driverExecutor.cpython-310.pyc -------------------------------------------------------------------------------- /lib/__pycache__/moduleChecker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/__pycache__/moduleChecker.cpython-310.pyc -------------------------------------------------------------------------------- /lib/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/definitions.py -------------------------------------------------------------------------------- /lib/driverExecutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/driverExecutor.py -------------------------------------------------------------------------------- /lib/moduleChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/lib/moduleChecker.py -------------------------------------------------------------------------------- /log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/log.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/main.py -------------------------------------------------------------------------------- /media/screenshot/copiedcookies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/media/screenshot/copiedcookies.jpg -------------------------------------------------------------------------------- /media/screenshot/copycookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/media/screenshot/copycookies.png -------------------------------------------------------------------------------- /media/screenshot/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/media/screenshot/preview.png -------------------------------------------------------------------------------- /media/screenshot/selectsession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/media/screenshot/selectsession.png -------------------------------------------------------------------------------- /media/screenshot/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/media/screenshot/session.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /sessions/.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdriver/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/webdriver/chromedriver.exe -------------------------------------------------------------------------------- /webdriver/chromedriver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Setiawan007/Shopee-Flashsale-BOT/HEAD/webdriver/chromedriver.json --------------------------------------------------------------------------------