├── .gitignore ├── LICENSE ├── README.md ├── README_DEV.md ├── assets └── icon.ico ├── dist ├── file_07_04_2025 │ └── run.exe └── file_old │ ├── mac_machine_id.exe │ └── machine_id.exe ├── docs └── imgs │ └── bg.png ├── requirements.txt └── src └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/README.md -------------------------------------------------------------------------------- /README_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/README_DEV.md -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /dist/file_07_04_2025/run.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/dist/file_07_04_2025/run.exe -------------------------------------------------------------------------------- /dist/file_old/mac_machine_id.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/dist/file_old/mac_machine_id.exe -------------------------------------------------------------------------------- /dist/file_old/machine_id.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/dist/file_old/machine_id.exe -------------------------------------------------------------------------------- /docs/imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/docs/imgs/bg.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8syncdev/py-cursor-helpers/HEAD/src/main.py --------------------------------------------------------------------------------