Communicate with the AVM FRITZ!Box
Project description
Python-Tool to communicate with the AVM FritzBox. Uses the TR-064 protocol over UPnP.
Installation:
pip install fritzconnection
Quickstart:
Using fritzconnection is as easy as:
from fritzconnection import FritzConnection fc = FritzConnection(address='192.168.178.1') fc.reconnect() # get a new external ip from the provider print(fc) # print router model informations
In general FritzConnection can execute every action provided by the (model-specific) API. For i.e. this can be WLAN settings, internet connection and device status informations, home automation services and much more.
The central method FritzConnection provides to access the FritzOS-API is the call_action() method. A reconnection by means of call_action() would look like this:
fc = FritzConnection(address='192.168.178.1') fc.call_action("WANIPConn1", "ForceTermination")
The package comes with a library providing some modules as examples how to implement applications on top of FritzConnection.
The package also allows to monitor phone calls in real time by means of the FritzMonitor class (new in 1.4.0):
from fritzconnection import FritzMonitor fm = FritzMonitor(address='192.168.178.1') # default ip for most routers queue = fm.start() # start monitoring: provides a queue.Queue instance # do queue handling here fm.stop() # stop monitoring
Documentation
The full documentation and release notes are at https://fritzconnection.readthedocs.org
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fritzconnection-1.7.0.tar.gz
.
File metadata
- Download URL: fritzconnection-1.7.0.tar.gz
- Upload date:
- Size: 35.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02c260cbdeaac062c56a471983f0a9bc243239f0b52accc3ff18f239144718bb |
|
MD5 | 2641f4f333df8aa56cf5c60539528eee |
|
BLAKE2b-256 | 3460115b1ef99e7a42572f36c82c723567062ae1d0e4586c01b3301d49619aaf |
Provenance
File details
Details for the file fritzconnection-1.7.0-py3-none-any.whl
.
File metadata
- Download URL: fritzconnection-1.7.0-py3-none-any.whl
- Upload date:
- Size: 48.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f7d53bef71ebdab7017a0fe26df362f8b4c89942a2b1104c6eab689fdb1bbca |
|
MD5 | 3c1c0fbed86f681231fc927d4a32c4a6 |
|
BLAKE2b-256 | 1c082176f5cd324074167c956c6021e89c626b6776aaa02587b0b26324b68476 |