switch-bot meters server
Project description
swb-meter
switch-bot meters server
Installation
Install this tool using pip
:
pip install
Usage
For help, run swb-meter --help
:
Usage: swb-meter [OPTIONS] COMMAND [ARGS]...
SwitchBot Meters Server CLI tool.
`swb-meter` allows you to listen for SwitchBot meters and insert the data into
a SQLite database.
By default the backend database is configured current directory with the name
`swb_meter.db` (created if not exists).
To change the database path by setting the environment variable
`SWB_METER_DB_PATH`:
$ export SWB_METER_DB_PATH=/path/to/db.sqlite
or:
$ SWB_METER_DB_PATH=/path/to/db.sqlite swb-meter listen
To get started, add a meter with an alias (typically the room name where the
meter is located) with its MAC address:
$ swb-meter add "Living Room" 12:34:56:78:90:AB
This will add a record to the `Meter` table.
$ swb-meter ls
Living Room 12:34:56:78:90:AB
Total: 1 meters
Then, start listening for the meters:
$ swb-meter listen
The data will be inserted into the `Temperature` table in the database.
To visualize the data, you can run the Streamlit app in another terminal. You
need optional dependencies [streamlit] installed:
$ pip install swb-meter[streamlit]
then run the Streamlit app:
$ swb-meter streamlit
By default, the log level is set to `INFO`.
To change log level, set environment variable `SWB_METER_LOG_LEVEL=DEBUG` for
verbose output.
$ export SWB_METER_LOG_LEVEL=DEBUG
or:
$ SWB_METER_LOG_LEVEL=DEBUG swb-meter listen
Options:
--version Show the version and exit.
--help Show this message and exit.
Commands:
add Add a SwitchBot meter to the master table with an alias.
listen Listen for SwitchBot meters and insert data into the...
ls List all SwitchBot meters in the master table.
rm Remove a SwitchBot meter from the master table.
streamlit Run the Streamlit app for visualizing the temperature data.
You can also use:
python -m swb_meter --help
Commands
swb-meter add
Usage: swb-meter add [OPTIONS] ALIAS MAC_ADDRESS
Add a SwitchBot meter to the master table with an alias.
Example:
$ swb-meter add "Living Room" 12:34:56:78:90:AB
Options:
-u, --upsert Upsert the existing record's alias
--help Show this message and exit.
swb-meter ls
Usage: swb-meter ls [OPTIONS]
List all SwitchBot meters in the master table.
Example:
$ swb-meter ls
Options:
--help Show this message and exit.
swb-meter rm
Usage: swb-meter rm [OPTIONS] MAC_ADDRESS
Remove a SwitchBot meter from the master table.
Example:
$ swb-meter rm 12:34:56:78:90:AB
Options:
--help Show this message and exit.
swb-meter listen
Usage: swb-meter listen [OPTIONS]
Listen for SwitchBot meters and insert data into the temperature table.
This command listens for SwitchBot meters and inserts the data into the
temperature table. For each scan, wait for the specified timeout duration
until all data is found and inserted once for each meter. The interval option
specifies the time to wait between scans.
Example:
$ swb-meter listen
$ swb-meter listen -t 10 -i 60 # Timeout 10 seconds, Interval 60 seconds
Options:
-t, --timeout FLOAT Timeout in seconds for each scan
-i, --interval INTEGER Interval in seconds between scans
-s, --scans INTEGER Number of scans. Default is None (infinite)
--help Show this message and exit.
swb-meter streamlit
Usage: swb-meter streamlit [OPTIONS]
Run the Streamlit app for visualizing the temperature data.
Example: $ swb-meter app
Options:
--help Show this message and exit.
Development
To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd swb-meter
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest
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
swb_meter-0.1.0a0.tar.gz
(14.7 kB
view details)
Built Distribution
File details
Details for the file swb_meter-0.1.0a0.tar.gz
.
File metadata
- Download URL: swb_meter-0.1.0a0.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc392827b684bf1b18333adc569e98ae6af17806c33e1300cff6221b9dbae5a3 |
|
MD5 | 0446a6c388baa7d501b51d8d8c444039 |
|
BLAKE2b-256 | 0b51f6017081d355ea52c36b72ed701dadc5522073c90b5afc4221c4188139ec |
File details
Details for the file swb_meter-0.1.0a0-py3-none-any.whl
.
File metadata
- Download URL: swb_meter-0.1.0a0-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfa0411eafb44688832e0396fc25bbd8f49892401eff1ffd05b01c7b72b9be17 |
|
MD5 | 522e94d11d5e1b4e958b3204ec41e1f9 |
|
BLAKE2b-256 | c0d4141f5ef2ac0a92cbbc21827ce7bbb2c96dfdaf9592b8ee580f95d855ef85 |