This is a telegram bot that allows you to manage your finances on a local .xlsx
file and add, delete, create an expense list, show charts and set budgets with alerts. In addition, you can synchronize it with Google Sheets.
- Demo
- What's new
- Next features
- Features
- Installation
- Usage
- Mermaid-based state diagram
- (Optional) Run with Docker
- (Optional) Setting as Systemd service
- Contributing
demo.mp4
- 📝 Local
.xlsx
file management: now by default all saved, deleted expenses, charts and lists are produced locally, under your control. - 🌐 Sync with Google Sheet: you can synchronize the last expenses you entered in your local
.xlsx
directly to Google Sheets.- Automatic sync: a background task wakes up every few minutes (configurable) and sync new expenses (if there are any new ones) with your Google Sheets. You can enable or disable Google Sheets synchronization via the
⚙️ Settings
command.
- Automatic sync: a background task wakes up every few minutes (configurable) and sync new expenses (if there are any new ones) with your Google Sheets. You can enable or disable Google Sheets synchronization via the
- All operations are now extremely faster because of the work being done locally. Google's API is very slow, so a batch synchronization of expenses is the best solution to ensure maximum responsiveness.
- ⚙️To improve readability and maintenance, the code was split into modules.
- 💰 Budgeting Feature: You can now set a budget for different expense categories and track your spending against these budgets.
- Receive notifications when your spending exceeds the set budget for any category. You can enable or disable budget notifications via the
⚙️ Settings
command.
- Receive notifications when your spending exceeds the set budget for any category. You can enable or disable budget notifications via the
- Docker image
- Mermaid-based state diagram
-
Initial decision screen between Google Sheets and save data locally in .csv format with ability to export and share (for those not planning to use gsheet) -
Improve the speed of execution for the elimination of an expense -
Simplify the code and make it more modular -
Creation of budgets with alerts if exceeded -
Docker image - Income management
- Cash account
- Investments
✏️ Add
expense with two dependent lists, category and subcategory.❌ Delete
expense with pagination to go back through older expenses.📊 Charts
of four types: yearly and monthly breakdowns, trends, and heatmaps.📋 List
to displays a summary of expenses for the current year.💰 Budget
set a budget for different expense categories.⚙️ Settings
show the system settings (currently Google Sheet sync and budget alerts).
- Clone the repository:
git clone https://github.com/sickmz/microw.git
cd microw
- Create a virtual environment:
python3 -m venv venv
source venv/bin/activate
- Install the required packages:
pip install -r requirements.txt
-
Create a Google Service Account
- Go to the Google Cloud Console.
- Create a new project or select an existing one.
- Enable the Google Sheet Api for this project.
- Navigate to the "APIs & Services" > "Credentials" section.
- Click "Create credentials" > "Service account".
- Fill in the service account details and click "Create".
- Click "Furnish a new private key" > "JSON" > "Create". The JSON file will be downloaded automatically.
- Rename the downloaded file to credentials.json and place it in the root directory of the project.
- Share your spreadsheet with the email of Google Service Account.
-
Environments configurations: create a
.env
file in the root directory of the project withtouch .env
-
Open the
.env
file in a text editor and add the following lines, replacing the placeholders with your actual values:
TELEGRAM_BOT_TOKEN=your_telegram_token_bot
TELEGRAM_USER_ID=your_telegram_user_id
REMOTE_SPREADSHEET_ID=your_remote_remote_spreadsheet_id
REMOTE_EXPENSE_SHEET=your_remote_expense_sheet_name
Warning
Make sure to add .env
and credentials.json
to your .gitignore
file to prevent accidental commits.
- Start a conversation with the bot on telegram.
- Use the
/start
command to initiate interaction. - Choose an action:
✏️ Add
,❌ Delete
,📊 Charts
,📋 List
,💰 Budget
or⚙️ Settings
. - Follow the bot's prompts.
Tip
I recommend setting a /cancel
command on BotFather to interrupt a workflow (e.g., stop entering an expense).
To see how this diagram is made you can look at this file.
flowchart TB
A(("start")):::entryPoint --> B("Authorize User")
B --> |"Authorized"| C(("Show Main Menu")):::state
B --> |"Not Authorized"| End(("END")):::termination
C --> |"✏️ Add"| D("Select Category"):::state
C --> |"❌ Delete"| E("Check Expenses"):::state
C --> |"📊 Charts"| F("Select Chart Type"):::state
C --> |"📋 List"| G("Generate Expense List"):::state
C --> |"💰 Budget"| H("Select Budget Action"):::state
C --> |"⚙️ Settings"| I("Show Settings"):::state
D --> J(("Select Subcategory"))
J --> K(("Enter Price"))
K --> L(("Save Expense"))
L --> C
E --> |"No expenses"| O(("No Expenses Message"))
E --> |"Expenses exist"| P(("Show Paginated Expenses"))
O --> C
P --> C
F --> |"Pie"| Q(("Generate Pie Chart"))
F --> |"Histogram"| R(("Generate Histogram"))
F --> |"Trend"| S(("Generate Trend Chart"))
F --> |"Heatmap"| T(("Generate Heatmap"))
Q --> C
R --> C
S --> C
T --> C
G --> U(("Generate Expense List"))
U --> C
H --> |"Set"| V(("Select Budget Category"))
H --> |"Show"| W(("Show Budgets"))
V --> X(("Enter Budget Amount"))
W --> C
X --> C
I --> Y(("Show Settings"))
Y --> Z(("Handle Settings Choice"))
Z --> C
subgraph Main
A1(("cancel")):::entryPoint
A1 --> C
end
style A fill:#00FF00,stroke:#000000,stroke-width:2px
style B fill:#726000,stroke:#000000,stroke-width:2px
style End fill:#FF0000,stroke:#000000,stroke-width:2px
classDef state fill:#88443f,stroke:#000000,stroke-width:1px
classDef entryPoint fill:#009c11, stroke:#42FF57, color:#ffffff
classDef termination fill:#bb0007, stroke:#E60109, color:#ffffff
The command docker compose up -d
will automatically build the docker image, just make sure to pass the .env
file and credentials.json
as volumes. In the repo I uploaded a sample of docker-compose.yaml
. To install Docker look at this gist.
- Create a new systemd service file:
sudo nano /etc/systemd/system/microw.service
- Copy the following content into the file:
[Unit]
Description=microw
After=network.target
[Service]
Type=simple
ExecStart=/home/$USER/code-server/workspace/microw/venv/bin/python3 main.py
WorkingDirectory=/home/$USER/code-server/workspace/microw
[Install]
WantedBy=multi-user.target
-
Replace the
ExecStart
andWorkingDirectory
paths with the actual paths to your script and project directory. -
Reload the systemd daemon, enable and start the service:
sudo systemctl daemon-reload
sudo systemctl enable microw.service
sudo systemctl start microw.service
Note
You can check the status of the service by typing sudo systemctl status microw.service
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.