A web based service to host and serve English to Arabic translations of termonologies related to artificial Intelligence and machine learnibng.
- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # On Unix/macOS
# or
.\venv\Scripts\activate # On Windows
- Install dependencies:
pip install -r requirements.txt
- Install pre-commit hooks (first time only):
pre-commit install
- Run the application:
python run.py
Unit tests are defined within /tests folder. We use pytest as a tesring framework. You can run the tests using:
pytest