Nostalgia will help with gathering data from a variety of sources and enable you to combine them easily.
It's much like Home Assistant, providing a platform, but then for connecting data instead of IoT devices.
Afterwards, it will help you filter and visualize the data.
The architecture is as follows. You're looking at the core which contains the code for ingesting sources, installing the backend system and allows you to write scripts using Nostalgia Query Language.
If you want to add your own data that is not supported, please for now contact us directly in either discord or slack and we'll help you get started. You can also look at the open issues to see suggestions for new sources.
Full list of current sources.
- Heartrate (Fitbit, Samsung Watch)
- Sleep (Fitbit, Samsung Watch, SleepCycle)
- Places (Google Timeline)
- Bank Payments (ING)
- Pictures (Google Photos)
- Emails (Gmail, Others (IMAP based))
- App Usage (Android)
- Calendar (Google)
- Chat Conversations (WhatsApp, Facebook Messages)
- Music listening (Google Play Music)
- Music identification (Shazam)
- Posts (Reddit, Facebook, Twitter)
- File Visits (Emacs)
- Annotated Screenshots (Tesseract)
- Web (Nostalgia Chrome Plugin) - works in Opera, Firefox, Brave, too!
- Products
- Events
- Videos
- Google Search
- People
- Indoor Positioning (whereami)
- Public Transport (MijnOV)
-
If you're a user:
pip install nostalgia
or...pip install -e .
if you might want to develop on Nostalgia -
Follow the instructions for a source of interest to ensure it is loaded
-
Use the data in an interactive session (run Python) OR run the timeline
-
To upgrade Nostalgia, as user run
pip install -U nostalgia
or as developer rungit pull
.
Given that you have payments, heartrate and google places set up, you could start Python and run:
In [15]: from nostalgia.sources.ing_banking.mijn_ing import Payments
payments = Payments.load()
payments.by_card\
.last_year\
.in_office_days\
.during_hours(7, 12)\
.by_me()\
.heartrate_above(100)\
.when_at("amsterdam")\
.sum()
Out[15]: 7.65 # in euros
This will give the total expenses by card in the last week, but only on work days, at night, when my heart rate is above 80 and I'm in Amsterdam. It combined the generic class functionality, together with data from:
- A Payments provider
- A Location provider
- A Heartrate provider
Please contribute the data sources that others could use as well!