Mini Python application that fetches your Habitica account and lists your Todos categorized by tag.
Clone or download the code and install the library denpendencies, e.g. using pip
pip install -r requirements.txt
In order for the application to get access to your account information, it will require your API User ID
and API Token
.
The credentials can be found under your Habitica account API settings page (under the User menu click "Settings" then "API"). As stated by the page itself, caution on sharing your API Token
with anyone else.
Once you find your credentials, copy the .env.example
file, rename the copy to .env
and place it in the same directory (root).
Edit your .env
file and add the API User ID
and API Token
credentials to the respective variables.
Run the main.py
script
python main.py
and as the output should confirm the application will load under the local web address http://localhost:8080/
.
Exit by using Ctr+C
.