Rename requirements.txt + add ClientData skeleton
This commit is contained in:
13
.gitignore
vendored
13
.gitignore
vendored
@ -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
10
dto/client_data.py
Normal 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
|
@ -14,3 +14,4 @@ pypdfium2==4.30.1
|
||||
pytesseract==0.3.13
|
||||
requests==2.32.3
|
||||
urllib3==2.4.0
|
||||
pydantic==2.11.3
|
Reference in New Issue
Block a user