├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── aigpy ├── LockHelper.py ├── __init__.py ├── cmdHelper.py ├── convertHelper.py ├── dictHelper.py ├── downloadHelper.py ├── ffmpegHelper.py ├── fileHelper.py ├── githubHelper.py ├── m3u8Helper.py ├── memoryHelper.py ├── modelHelper.py ├── musicHelp.py ├── netHelper.py ├── pathHelper.py ├── pipHelper.py ├── progressHelper.py ├── stringHelper.py ├── systemHelper.py ├── tagHelper.py ├── threadHelper.py └── timeHelp.py ├── setup.py └── test.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/README.md -------------------------------------------------------------------------------- /aigpy/LockHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/LockHelper.py -------------------------------------------------------------------------------- /aigpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/__init__.py -------------------------------------------------------------------------------- /aigpy/cmdHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/cmdHelper.py -------------------------------------------------------------------------------- /aigpy/convertHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/convertHelper.py -------------------------------------------------------------------------------- /aigpy/dictHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/dictHelper.py -------------------------------------------------------------------------------- /aigpy/downloadHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/downloadHelper.py -------------------------------------------------------------------------------- /aigpy/ffmpegHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/ffmpegHelper.py -------------------------------------------------------------------------------- /aigpy/fileHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/fileHelper.py -------------------------------------------------------------------------------- /aigpy/githubHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/githubHelper.py -------------------------------------------------------------------------------- /aigpy/m3u8Helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/m3u8Helper.py -------------------------------------------------------------------------------- /aigpy/memoryHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/memoryHelper.py -------------------------------------------------------------------------------- /aigpy/modelHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/modelHelper.py -------------------------------------------------------------------------------- /aigpy/musicHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/musicHelp.py -------------------------------------------------------------------------------- /aigpy/netHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/netHelper.py -------------------------------------------------------------------------------- /aigpy/pathHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/pathHelper.py -------------------------------------------------------------------------------- /aigpy/pipHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/pipHelper.py -------------------------------------------------------------------------------- /aigpy/progressHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/progressHelper.py -------------------------------------------------------------------------------- /aigpy/stringHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/stringHelper.py -------------------------------------------------------------------------------- /aigpy/systemHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/systemHelper.py -------------------------------------------------------------------------------- /aigpy/tagHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/tagHelper.py -------------------------------------------------------------------------------- /aigpy/threadHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/threadHelper.py -------------------------------------------------------------------------------- /aigpy/timeHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/aigpy/timeHelp.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIGMix/AIGPY/HEAD/test.py --------------------------------------------------------------------------------