Rename requirements.txt + add ClientData skeleton

This commit is contained in:
Nitwix
2025-04-12 09:42:40 +02:00
parent a3fb4e5254
commit 8e9db9f1da
3 changed files with 24 additions and 0 deletions

13
.gitignore vendored
View File

@ -260,3 +260,16 @@ poetry.toml
pyrightconfig.json
# End of https://www.toptal.com/developers/gitignore/api/flask,python
# Devenv
.devenv*
devenv.local.nix
devenv.nix
devenv.yaml
.envrc
devenv.lock
# direnv
.direnv
# pre-commit
.pre-commit-config.yaml

10
dto/client_data.py Normal file
View File

@ -0,0 +1,10 @@
from pydantic import BaseModel
class ClientData(BaseModel):
"""
Model for the client data attributes which need to be validated and compared for correspondence between
the data sources ()
"""
name: str
# TODO CONTINUE

View File

@ -14,3 +14,4 @@ pypdfium2==4.30.1
pytesseract==0.3.13
requests==2.32.3
urllib3==2.4.0
pydantic==2.11.3