2025-06-26 00:32:51 -04:00

29 lines
513 B
Markdown

## Getting Started
To run this python:
1. **Clone the repository** (if applicable):
```
git clone <repository-url>
cd hello-world-project
```
2. **Install dependencies**:
You can install the required dependencies using pip:
```
pip install -r requirements.txt
```
3. **Run the application**:
Execute the main Python script:
```
python src/main.py
```
## Running Tests
To run the unit tests, you can use the following command:
```
python -m unittest discover -s tests
```