Auto Note Keeper

What is this?

This is a small application that automatically logs data to a Trello list using a cronjob. This uses the the Trello Rest API to update cards in a list.

Setup

  1. Create .env file with following contents:
KEY=<Trello Key>
TOKEN=<Trello Token>
CARDS=<List of Trello card IDs separated by commas>
  1. Modify main.py to your liking. This example retrieves the date, public IP address and CPU temperatue of a Raspberry Pi 4:

example_list

  1. Modify the cronjob in setup.sh to the interval you want. Default is 5 minutes.

  2. Run setup.sh

Notes

  • This has only been tested on Ubuntu 20.04 but should work on any Unix system with Python and Bash.