├── .gitignore ├── LICENSE ├── README.md ├── huawei_lte ├── __init__.py ├── _version.py ├── crypto.py ├── errors.py ├── requirements.txt ├── router.py ├── utils.py └── xmlobjects.py ├── reboot.py ├── setup.py └── tests └── test_router.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .vscode 3 | .env 4 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/README.md -------------------------------------------------------------------------------- /huawei_lte/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /huawei_lte/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/_version.py -------------------------------------------------------------------------------- /huawei_lte/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/crypto.py -------------------------------------------------------------------------------- /huawei_lte/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/errors.py -------------------------------------------------------------------------------- /huawei_lte/requirements.txt: -------------------------------------------------------------------------------- 1 | pycrypto==2.6.1 2 | IPy==1.0.0 3 | -------------------------------------------------------------------------------- /huawei_lte/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/router.py -------------------------------------------------------------------------------- /huawei_lte/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/utils.py -------------------------------------------------------------------------------- /huawei_lte/xmlobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/huawei_lte/xmlobjects.py -------------------------------------------------------------------------------- /reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/reboot.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinxo13/HuaweiB525Router/HEAD/tests/test_router.py --------------------------------------------------------------------------------