├── .gitignore ├── README.md ├── dewuAppApi.py ├── dewuToken.txt ├── lib └── chromedriver.exe └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea 3 | test.py 4 | log/ 5 | brower/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenjianwei/dewuautoputaway/HEAD/README.md -------------------------------------------------------------------------------- /dewuAppApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenjianwei/dewuautoputaway/HEAD/dewuAppApi.py -------------------------------------------------------------------------------- /dewuToken.txt: -------------------------------------------------------------------------------- 1 | AVGTfnb2nsZdgE19mADDx4oE8InWTxtRYEUF7W3a2VPsqNFbNDQ7hwyNqgvbzNca -------------------------------------------------------------------------------- /lib/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenjianwei/dewuautoputaway/HEAD/lib/chromedriver.exe -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenjianwei/dewuautoputaway/HEAD/main.py --------------------------------------------------------------------------------