Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/10maurycy10/bday
A simple birthday tracker utility.
https://github.com/10maurycy10/bday
Last synced: 2 months ago
JSON representation
A simple birthday tracker utility.
- Host: GitHub
- URL: https://github.com/10maurycy10/bday
- Owner: 10maurycy10
- Created: 2022-08-18T22:26:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T01:24:23.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T16:25:31.061Z (almost 2 years ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Birthday tracker
I can never remember when someones birthday is, so I made a script to keep track of it and warn me when it approaches.
To use it, first populate the database (this is stored in `~/.local/share/bday.sqlite`) using the ``add`` subcommand.```
python3 ./bday.py add test 0001-01-01
```Now you can list out birthdays:
```
python3 ./bday.py ls
```You can also show approaching birthdays, this has no output normally, so you can put it in your `.bashrc`.
```
python3 ./bday.py soon
```Finally, you can use the ``del`` command to remove a person, using the id shown ``ls`` output.