Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sauberr/currency_exchange
Simple currency exchange UAH to USD, EUR and PLN
https://github.com/sauberr/currency_exchange
python
Last synced: about 1 month ago
JSON representation
Simple currency exchange UAH to USD, EUR and PLN
- Host: GitHub
- URL: https://github.com/sauberr/currency_exchange
- Owner: Sauberr
- License: mit
- Created: 2023-02-07T08:56:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-02T15:26:59.000Z (about 1 month ago)
- Last Synced: 2024-12-02T16:41:40.748Z (about 1 month ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Currency Exchange
This Python project is a lightweight currency converter that lets you instantly exchange Ukrainian ₴ to $ , €, and zł. Leveraging the power of bs4 and requests, it fetches live exchange rates directly from Google Currency, ensuring accurate and up-to-the-minute conversions. Perfect for quick calculations on the go, this simple yet effective tool showcases the practical application of web scraping and currency conversion in Python.
#### Stack:
- [Python](https://www.python.org/downloads/)
## Local Developing
All actions should be executed from the source directory of the project and only after installing all requirements.
1. Firstly, create and activate a new virtual environment:
```bash
python3.11 -m venv ../venv
source ../venv/bin/activate
```
2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```