├── .gitignore ├── README.md ├── py36 ├── exchange_59_20.py ├── exchange_9.9.py ├── exchange_alg.py ├── exchange_check_coupons.py ├── exchange_check_redpacket.py ├── exchange_evaluation.py ├── exchange_general_long_key.py ├── exchange_general_short_key.py ├── exchange_lib.py ├── exchange_plus.py ├── exchange_test_delay.py ├── exchange_tools.py ├── exchange_xiaomi.py └── pytransform │ ├── __init__.py │ └── platforms │ ├── darwin │ └── x86_64 │ │ └── _pytransform.dylib │ ├── linux │ ├── aarch64 │ │ └── _pytransform.so │ └── x86_64 │ │ └── _pytransform.so │ └── windows │ └── x86_64 │ └── _pytransform.dll ├── py37 ├── exchange_59_20.py ├── exchange_9.9.py ├── exchange_alg.py ├── exchange_check_coupons.py ├── exchange_check_redpacket.py ├── exchange_evaluation.py ├── exchange_general_long_key.py ├── exchange_general_short_key.py ├── exchange_lib.py ├── exchange_plus.py ├── exchange_test_delay.py ├── exchange_tools.py ├── exchange_xiaomi.py └── pytransform │ ├── __init__.py │ └── platforms │ ├── darwin │ └── x86_64 │ │ └── _pytransform.dylib │ ├── linux │ ├── aarch64 │ │ └── _pytransform.so │ └── x86_64 │ │ └── _pytransform.so │ └── windows │ └── x86_64 │ └── _pytransform.dll ├── py38 ├── exchange_59_20.py ├── exchange_9.9.py ├── exchange_alg.py ├── exchange_check_coupons.py ├── exchange_check_redpacket.py ├── exchange_evaluation.py ├── exchange_general_long_key.py ├── exchange_general_short_key.py ├── exchange_lib.py ├── exchange_plus.py ├── exchange_test_delay.py ├── exchange_tools.py ├── exchange_xiaomi.py └── pytransform │ ├── __init__.py │ └── platforms │ ├── darwin │ └── x86_64 │ │ └── _pytransform.dylib │ ├── linux │ ├── aarch64 │ │ └── _pytransform.so │ └── x86_64 │ │ └── _pytransform.so │ └── windows │ └── x86_64 │ └── _pytransform.dll └── py39 ├── exchange_59_20.py ├── exchange_9.9.py ├── exchange_alg.py ├── exchange_check_coupons.py ├── exchange_check_redpacket.py ├── exchange_evaluation.py ├── exchange_general_long_key.py ├── exchange_general_short_key.py ├── exchange_lib.py ├── exchange_plus.py ├── exchange_test_delay.py ├── exchange_tools.py ├── exchange_xiaomi.py └── pytransform ├── __init__.py └── platforms ├── darwin └── x86_64 │ └── _pytransform.dylib ├── linux ├── aarch64 │ └── _pytransform.so └── x86_64 │ └── _pytransform.so └── windows └── x86_64 └── _pytransform.dll /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.json 3 | *.db 4 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/README.md -------------------------------------------------------------------------------- /py36/exchange_59_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_59_20.py -------------------------------------------------------------------------------- /py36/exchange_9.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_9.9.py -------------------------------------------------------------------------------- /py36/exchange_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_alg.py -------------------------------------------------------------------------------- /py36/exchange_check_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_check_coupons.py -------------------------------------------------------------------------------- /py36/exchange_check_redpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_check_redpacket.py -------------------------------------------------------------------------------- /py36/exchange_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_evaluation.py -------------------------------------------------------------------------------- /py36/exchange_general_long_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_general_long_key.py -------------------------------------------------------------------------------- /py36/exchange_general_short_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_general_short_key.py -------------------------------------------------------------------------------- /py36/exchange_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_lib.py -------------------------------------------------------------------------------- /py36/exchange_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_plus.py -------------------------------------------------------------------------------- /py36/exchange_test_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_test_delay.py -------------------------------------------------------------------------------- /py36/exchange_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_tools.py -------------------------------------------------------------------------------- /py36/exchange_xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/exchange_xiaomi.py -------------------------------------------------------------------------------- /py36/pytransform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/pytransform/__init__.py -------------------------------------------------------------------------------- /py36/pytransform/platforms/darwin/x86_64/_pytransform.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/pytransform/platforms/darwin/x86_64/_pytransform.dylib -------------------------------------------------------------------------------- /py36/pytransform/platforms/linux/aarch64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/pytransform/platforms/linux/aarch64/_pytransform.so -------------------------------------------------------------------------------- /py36/pytransform/platforms/linux/x86_64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/pytransform/platforms/linux/x86_64/_pytransform.so -------------------------------------------------------------------------------- /py36/pytransform/platforms/windows/x86_64/_pytransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py36/pytransform/platforms/windows/x86_64/_pytransform.dll -------------------------------------------------------------------------------- /py37/exchange_59_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_59_20.py -------------------------------------------------------------------------------- /py37/exchange_9.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_9.9.py -------------------------------------------------------------------------------- /py37/exchange_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_alg.py -------------------------------------------------------------------------------- /py37/exchange_check_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_check_coupons.py -------------------------------------------------------------------------------- /py37/exchange_check_redpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_check_redpacket.py -------------------------------------------------------------------------------- /py37/exchange_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_evaluation.py -------------------------------------------------------------------------------- /py37/exchange_general_long_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_general_long_key.py -------------------------------------------------------------------------------- /py37/exchange_general_short_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_general_short_key.py -------------------------------------------------------------------------------- /py37/exchange_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_lib.py -------------------------------------------------------------------------------- /py37/exchange_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_plus.py -------------------------------------------------------------------------------- /py37/exchange_test_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_test_delay.py -------------------------------------------------------------------------------- /py37/exchange_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_tools.py -------------------------------------------------------------------------------- /py37/exchange_xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/exchange_xiaomi.py -------------------------------------------------------------------------------- /py37/pytransform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/pytransform/__init__.py -------------------------------------------------------------------------------- /py37/pytransform/platforms/darwin/x86_64/_pytransform.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/pytransform/platforms/darwin/x86_64/_pytransform.dylib -------------------------------------------------------------------------------- /py37/pytransform/platforms/linux/aarch64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/pytransform/platforms/linux/aarch64/_pytransform.so -------------------------------------------------------------------------------- /py37/pytransform/platforms/linux/x86_64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/pytransform/platforms/linux/x86_64/_pytransform.so -------------------------------------------------------------------------------- /py37/pytransform/platforms/windows/x86_64/_pytransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py37/pytransform/platforms/windows/x86_64/_pytransform.dll -------------------------------------------------------------------------------- /py38/exchange_59_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_59_20.py -------------------------------------------------------------------------------- /py38/exchange_9.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_9.9.py -------------------------------------------------------------------------------- /py38/exchange_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_alg.py -------------------------------------------------------------------------------- /py38/exchange_check_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_check_coupons.py -------------------------------------------------------------------------------- /py38/exchange_check_redpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_check_redpacket.py -------------------------------------------------------------------------------- /py38/exchange_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_evaluation.py -------------------------------------------------------------------------------- /py38/exchange_general_long_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_general_long_key.py -------------------------------------------------------------------------------- /py38/exchange_general_short_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_general_short_key.py -------------------------------------------------------------------------------- /py38/exchange_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_lib.py -------------------------------------------------------------------------------- /py38/exchange_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_plus.py -------------------------------------------------------------------------------- /py38/exchange_test_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_test_delay.py -------------------------------------------------------------------------------- /py38/exchange_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_tools.py -------------------------------------------------------------------------------- /py38/exchange_xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/exchange_xiaomi.py -------------------------------------------------------------------------------- /py38/pytransform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/pytransform/__init__.py -------------------------------------------------------------------------------- /py38/pytransform/platforms/darwin/x86_64/_pytransform.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/pytransform/platforms/darwin/x86_64/_pytransform.dylib -------------------------------------------------------------------------------- /py38/pytransform/platforms/linux/aarch64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/pytransform/platforms/linux/aarch64/_pytransform.so -------------------------------------------------------------------------------- /py38/pytransform/platforms/linux/x86_64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/pytransform/platforms/linux/x86_64/_pytransform.so -------------------------------------------------------------------------------- /py38/pytransform/platforms/windows/x86_64/_pytransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py38/pytransform/platforms/windows/x86_64/_pytransform.dll -------------------------------------------------------------------------------- /py39/exchange_59_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_59_20.py -------------------------------------------------------------------------------- /py39/exchange_9.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_9.9.py -------------------------------------------------------------------------------- /py39/exchange_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_alg.py -------------------------------------------------------------------------------- /py39/exchange_check_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_check_coupons.py -------------------------------------------------------------------------------- /py39/exchange_check_redpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_check_redpacket.py -------------------------------------------------------------------------------- /py39/exchange_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_evaluation.py -------------------------------------------------------------------------------- /py39/exchange_general_long_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_general_long_key.py -------------------------------------------------------------------------------- /py39/exchange_general_short_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_general_short_key.py -------------------------------------------------------------------------------- /py39/exchange_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_lib.py -------------------------------------------------------------------------------- /py39/exchange_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_plus.py -------------------------------------------------------------------------------- /py39/exchange_test_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_test_delay.py -------------------------------------------------------------------------------- /py39/exchange_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_tools.py -------------------------------------------------------------------------------- /py39/exchange_xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/exchange_xiaomi.py -------------------------------------------------------------------------------- /py39/pytransform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/pytransform/__init__.py -------------------------------------------------------------------------------- /py39/pytransform/platforms/darwin/x86_64/_pytransform.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/pytransform/platforms/darwin/x86_64/_pytransform.dylib -------------------------------------------------------------------------------- /py39/pytransform/platforms/linux/aarch64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/pytransform/platforms/linux/aarch64/_pytransform.so -------------------------------------------------------------------------------- /py39/pytransform/platforms/linux/x86_64/_pytransform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/pytransform/platforms/linux/x86_64/_pytransform.so -------------------------------------------------------------------------------- /py39/pytransform/platforms/windows/x86_64/_pytransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeHalcyon/fisher_script/HEAD/py39/pytransform/platforms/windows/x86_64/_pytransform.dll --------------------------------------------------------------------------------