Huaweiモバイル ルーターに関する興味深い記事を見つけました: https://blog.hqcodeshop.fi/archives/259-Huawei-E5186-AJAX-API.html
へこみを自分で直そうとしました。ここに結果がありますhttp://pastebin.com/KqF5RsS0 正しいかどうかわかりません。それを実行するためにどのバージョンの Python を使用すればよいかさえわかりません。
sabbath@dell ~> /usr/bin/python2 router-reboot-script.py
Traceback (most recent call last):
File "router-reboot-script.py", line 6, in <module>
import requests
ImportError: No module named requests
また
[sabbath@dell ~]$ python -m router-reboot-script.py
/usr/bin/python: Error while finding spec for 'router-reboot-script.py' (AttributeError: module 'router-reboot-script' has no attribute '__path__')
Python のスキルはありません。誰かがそれを実行する方法を理解するのを手伝ってくれますか?
編集
[sabbath@dell ~]$ sudo pip install requests
Requirement already satisfied (use --upgrade to upgrade): requests in /usr/lib/python3.5/site-packages
You are using pip version 8.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
[sabbath@dell ~]$ sudo pip install --upgrade pip
Collecting pip
Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
100% |████████████████████████████████| 1.3MB 686kB/s
Installing collected packages: pip
Found existing installation: pip 8.1.2
Uninstalling pip-8.1.2:
Successfully uninstalled pip-8.1.2
Successfully installed pip-9.0.1
[sabbath@dell ~]$ sudo pip install requests
Requirement already satisfied: requests in /usr/lib/python3.5/site-packages
[sabbath@dell ~]$ python -m router-reboot-script.py
/usr/bin/python: Error while finding spec for 'router-reboot-script.py' (AttributeError: module 'router-reboot-script' has no attribute '__path__')
[sabbath@dell ~]$ python router-reboot-script.py
どのバージョンの python を使用する必要がありますか? また、どのような種類のパラメーター (-m など) を使用する必要がありますか?