Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/badboy/eve-to-sqlite
Convert Eve measurement exports to a SQLite database.
https://github.com/badboy/eve-to-sqlite
Last synced: 10 days ago
JSON representation
Convert Eve measurement exports to a SQLite database.
- Host: GitHub
- URL: https://github.com/badboy/eve-to-sqlite
- Owner: badboy
- License: apache-2.0
- Created: 2021-08-24T18:31:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-24T20:58:08.000Z (over 3 years ago)
- Last Synced: 2025-01-19T20:14:46.772Z (13 days ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eve-to-sqlite
[![PyPI](https://img.shields.io/pypi/v/eve-to-sqlite.svg)](https://pypi.org/project/eve-to-sqlite/)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/badboy/eve-to-sqlite/blob/main/LICENSE)Convert [Eve](https://www.evehome.com/) measurement exports to a SQLite database.
## How to install
$ pip install eve-to-sqlite
## How to use
First you need to export your Eve data.
1. On your iPhone, open the "Eve" app.
2. Go to the Rooms overview and select your accessory.
3. Go to the details information (the little blue `i` below the overview).
4. Click "Measurements".
5. Click the "Export" button on the top of that page.
4. Save the resulting file somewhere you can access it, or AirDrop it directly to your laptop.Now you can convert the resulting `Eve_Temperature.xlsx` file (or similar) to SQLite like so:
$ eve-to-sqlite Eve_Temperature.xlsx eve.db
You can pass multiple Excel files at once.
You can explore the resulting data using [Datasette](https://datasette.readthedocs.io/) like this:
$ datasette eve.db
## More
* [Dogsheep](https://dogsheep.github.io/) - collection of tools for *personal analytics* using SQLite and Datasette.