An open API service indexing awesome lists of open source software.

https://github.com/busradeveci/pydanticproject

This project was realized as part of the Web Development course I took at the Artificial Intelligence and Technology Academy.
https://github.com/busradeveci/pydanticproject

configuration-management data-validation fastapi pydantic python

Last synced: about 1 year ago
JSON representation

This project was realized as part of the Web Development course I took at the Artificial Intelligence and Technology Academy.

Awesome Lists containing this project

README

          

# Pydantic Project
This project is built to simplify data validation and configuration management using the Pydantic library in Python. It offers a fast, reliable, and user-friendly solution.

## Features
- Fast and reliable data validation
- User-friendly configuration management
- Custom feature specific to the project (Add your specific feature here)

## Installation
To set up the project locally, follow these steps:

1. Clone the repository:
```bash
git clone https://github.com/Busradeveci/pydanticproject.git
```

2. Create and activate a virtual environment:
- For MacOS/Linux:
```bash
python -m venv venv
source venv/bin/activate
```
- For Windows:
```bash
python -m venv venv
venv\Scripts\activate
```

3. Install the dependencies:
```bash
pip install -r requirements.txt
```

4. Run the application:
```bash
python main.py
```