├── .gitignore ├── 1_wifi_crack ├── .gitignore ├── README.md ├── eazy_code.py ├── main.py ├── so_eazy_code.py ├── ui_tool │ ├── Ui_mainWindow.py │ ├── logo.ico │ ├── logo.png │ ├── mainWindow.ui │ ├── pswd.dict │ ├── pswd_demo.dict │ ├── res.qrc │ ├── res_rc.py │ ├── run_mainWindow.py │ ├── run_mainWindow.spec │ └── wifi_utils.py └── 这里没有存密码.txt ├── 2_windows_pet ├── baiduyun_api │ └── image_classify.py ├── video2imgs.py └── windows_pet.py ├── 3_kun_keyboard_catcher ├── img │ └── auto_resource_demo.png ├── learn_pynput │ └── test.py ├── readme.md └── tools │ ├── audios │ ├── 1.mp3 │ ├── 114514.mp3 │ ├── b.mp3 │ ├── c.mp3 │ ├── e.mp3 │ ├── h.mp3 │ ├── j.mp3 │ ├── k.mp3 │ ├── l.mp3 │ ├── m.mp3 │ ├── n.mp3 │ ├── ngm.mp3 │ ├── r.mp3 │ ├── t.mp3 │ └── y.mp3 │ ├── imgs │ ├── bubble.png │ ├── cai1.png │ ├── cai2.png │ ├── kun_keyboard.ico │ ├── tie_cai1.png │ ├── tie_cai2.png │ ├── tie_kun_keyboard.ico │ ├── yeshou_cai1.png │ ├── yeshou_cai2.png │ ├── yeshou_kun_keyboard.ico │ └── 摆件.jpeg │ ├── monitor.py │ ├── qt_util.py │ └── requirements.txt ├── 4_windows_wallpaper ├── Ui_design.py ├── design.ui ├── main.py ├── readme.md ├── requirments.txt └── yuan.ico ├── 5_rotate_img ├── Ui_rotate_img.py ├── cry_cat.ico ├── demo1.py ├── main.py ├── requirements.txt └── rotate_img.ui └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | dist/ 3 | build/ 4 | *.spec 5 | *.pyc -------------------------------------------------------------------------------- /1_wifi_crack/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.exe 3 | build/ 4 | dist/ 5 | baiduyun_unit.py -------------------------------------------------------------------------------- /1_wifi_crack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/README.md -------------------------------------------------------------------------------- /1_wifi_crack/eazy_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/eazy_code.py -------------------------------------------------------------------------------- /1_wifi_crack/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/main.py -------------------------------------------------------------------------------- /1_wifi_crack/so_eazy_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/so_eazy_code.py -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/Ui_mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/Ui_mainWindow.py -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/logo.ico -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/logo.png -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/mainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/mainWindow.ui -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/pswd.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/pswd.dict -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/pswd_demo.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/pswd_demo.dict -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/res.qrc -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/res_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/res_rc.py -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/run_mainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/run_mainWindow.py -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/run_mainWindow.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/run_mainWindow.spec -------------------------------------------------------------------------------- /1_wifi_crack/ui_tool/wifi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/ui_tool/wifi_utils.py -------------------------------------------------------------------------------- /1_wifi_crack/这里没有存密码.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/1_wifi_crack/这里没有存密码.txt -------------------------------------------------------------------------------- /2_windows_pet/baiduyun_api/image_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/2_windows_pet/baiduyun_api/image_classify.py -------------------------------------------------------------------------------- /2_windows_pet/video2imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/2_windows_pet/video2imgs.py -------------------------------------------------------------------------------- /2_windows_pet/windows_pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/2_windows_pet/windows_pet.py -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/img/auto_resource_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/img/auto_resource_demo.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/learn_pynput/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/learn_pynput/test.py -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/readme.md -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/1.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/114514.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/114514.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/b.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/b.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/c.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/c.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/e.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/e.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/h.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/j.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/j.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/k.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/k.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/l.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/l.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/m.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/m.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/n.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/n.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/ngm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/ngm.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/r.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/r.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/t.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/t.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/audios/y.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/audios/y.mp3 -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/bubble.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/cai1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/cai1.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/cai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/cai2.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/kun_keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/kun_keyboard.ico -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/tie_cai1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/tie_cai1.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/tie_cai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/tie_cai2.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/tie_kun_keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/tie_kun_keyboard.ico -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/yeshou_cai1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/yeshou_cai1.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/yeshou_cai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/yeshou_cai2.png -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/yeshou_kun_keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/yeshou_kun_keyboard.ico -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/imgs/摆件.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/imgs/摆件.jpeg -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/monitor.py -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/qt_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/qt_util.py -------------------------------------------------------------------------------- /3_kun_keyboard_catcher/tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/3_kun_keyboard_catcher/tools/requirements.txt -------------------------------------------------------------------------------- /4_windows_wallpaper/Ui_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/4_windows_wallpaper/Ui_design.py -------------------------------------------------------------------------------- /4_windows_wallpaper/design.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/4_windows_wallpaper/design.ui -------------------------------------------------------------------------------- /4_windows_wallpaper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/4_windows_wallpaper/main.py -------------------------------------------------------------------------------- /4_windows_wallpaper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/4_windows_wallpaper/readme.md -------------------------------------------------------------------------------- /4_windows_wallpaper/requirments.txt: -------------------------------------------------------------------------------- 1 | pywin32 2 | PyQt5 3 | pyinstaller 4 | opencv-python -------------------------------------------------------------------------------- /4_windows_wallpaper/yuan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/4_windows_wallpaper/yuan.ico -------------------------------------------------------------------------------- /5_rotate_img/Ui_rotate_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/5_rotate_img/Ui_rotate_img.py -------------------------------------------------------------------------------- /5_rotate_img/cry_cat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/5_rotate_img/cry_cat.ico -------------------------------------------------------------------------------- /5_rotate_img/demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/5_rotate_img/demo1.py -------------------------------------------------------------------------------- /5_rotate_img/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/5_rotate_img/main.py -------------------------------------------------------------------------------- /5_rotate_img/requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | moviepy 3 | opencv-python -------------------------------------------------------------------------------- /5_rotate_img/rotate_img.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenYuhan/python-tools/HEAD/5_rotate_img/rotate_img.ui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------