Predict the financial health of small and medium enterprises in Eswatini, Lesotho, Zimbabwe, and Malawi
# Financial Health Prediction
## Contribution 🧑💻
To contribute you need to first clone the repository to your maching using this connand.
```bash
git clone
github.com
```
After cloning you need to create and activate the virtual environment using the command below. If you have not installed `uv` on your computer you can install it by following this video as a guide. A sufficient video tutorial for uv can be found in this link.
```bash
uv sync
```
Select the kernel, on your notebook environment, that is associated with the created virtual environment and then easily run the cells and python scripts. If you entend to run a Python script you can follow this syntax:
```bash
uv run scriptname.py
```
To add new packages you are you to use this syntax
```bash
uv add package
```
You can add your changes and if you want to push, them so other contributors can see it, you need to stage and push them to the remote repository by running this series of commands in order. Be sure to replace `message` with a clear message that describes the changes you made.
```bash
git add .
git commit -m "message"
git push origin main
```
Goodluck!🌠