Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukasalvarezdev/learning-python
Simple expenses tracker made with python
https://github.com/lukasalvarezdev/learning-python
Last synced: about 2 months ago
JSON representation
Simple expenses tracker made with python
- Host: GitHub
- URL: https://github.com/lukasalvarezdev/learning-python
- Owner: lukasalvarezdev
- License: gpl-3.0
- Created: 2024-08-26T10:22:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-27T08:22:41.000Z (5 months ago)
- Last Synced: 2024-08-27T14:11:29.451Z (5 months ago)
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learning python by Lukas Alvarez
These are my first baby steps in python, so if you're gonna judge my coding skills based on this, please don't. Go check my profile instead [here](https://github.com/lukasalvarezdev).The repository is divided into small projects each of them made to practice different skills, the following list is ordered by time (older ones first) so the deeper in the list, the better the code.
## Project setup
First clone the repo
```sh
git clone lukasalvarezdev/learning-python
```Install all dependencies
```sh
python -m pip install -r requirements.txt
```## Projects
### Calculator app
A small CLI program that performs the 4 basic aritmethic operations (addition, subtraction, divison, multiplication)**How it works**:
First run the program
```sh
cd calculator
python main.py
```
Then you just have to follow the promt instructions.**Limitations**:
- It only does operations in the order you put them. It will get fancier in the future.