This repository is for training purposes and contains Python modules and Jupyter notebooks.
- Clone the repository.
- Create a virtual environment.
- Install dependencies from
requirements.txt.
- Create the YAML file and save the MySQL connection credentials.
- Implement the MySQLConnector class inside
mysql_connector.py. - Add necessary libraries to
requirements.txt. - Ensure the
.gitignorefile is properly set up to exclude sensitive credential files
git clone git@github.com:MILITZAA/training.git
python3.9 -m venv venv
source venv/bin/activate # On Windows: .\venv\Scripts\Activate
pip install -r requirements.txt
pip install SQLAlchemy
pip install PyMySQL
pip install cryptography