Skip to content

Commit 53aaf24

Browse files
committed
modificando archivos
1 parent 63ff3a1 commit 53aaf24

15 files changed

+235
-55
lines changed

.gitignore

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
98+
celerybeat-schedule
99+
celerybeat.pid
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Environments
105+
.env
106+
.venv
107+
env/
108+
venv/
109+
ENV/
110+
env.bak/
111+
venv.bak/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Rope project settings
118+
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: uvicorn main:api --host=0.0.0.0 --port=${PORT:-5000}

__init__.py

Whitespace-only changes.

__pycache__/main.cpython-38.pyc

-961 Bytes
Binary file not shown.

db/__init__.py

Whitespace-only changes.
-107 Bytes
Binary file not shown.
-1.36 KB
Binary file not shown.

db/record_db.py

+50-55
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,70 @@
11
##################imports##################################
22

3-
from typing import Dict #tipado de datos (ej: str, int, boolean, etc.)
4-
from pydantic import BaseModel #validación de datos (?)
5-
from datetime import datetime #función para el tipo de dato DATE, DATETIME
6-
3+
from typing import Dict # tipado de datos (ej: str, int, boolean, etc.)
4+
from pydantic import BaseModel # validación de datos (?)
5+
from datetime import datetime # función para el tipo de dato DATE, DATETIME
6+
from datetime import date
77
###########definición de el objeto record##################
88

9+
910
class RecordInDB(BaseModel):
10-
id: int = 0 #AUTOINCREMENTAL
11-
categoria: str #e.g. HEALTH, PETS, FOOD, SALARY
12-
tipo: str #EXPENSES OR INCOME
13-
cantidad: float #e.g. $ 150.000
14-
fecha_registro: datetime = datetime.now() #revise
11+
id: int = 0 # AUTOINCREMENTAL
12+
categoria: str # e.g. HEALTH, PETS, FOOD, SALARY
13+
tipo: str # EXPENSES OR INCOME
14+
cantidad: float # e.g. $ 150.000
15+
fecha_registro: date # revise
1516

1617
#################base de datos################################
1718

19+
1820
database_records = Dict[int, RecordInDB]
1921
database_records = {
20-
"1": RecordInDB(**{"id":"1",
21-
"categoria":"salary",
22-
"tipo":"income",
23-
"cantidad": 3000000,
24-
"fecha_registro": 2018-12-19
25-
}),
26-
"2": RecordInDB(**{"id":"2",
27-
"categoria":"groceries",
28-
"tipo":"expense",
29-
"cantidad": 150000,
30-
"fecha_registro": 2018-12-23
31-
}),
32-
"3": RecordInDB(**{"id":"3",
33-
"categoria":"healthcare",
34-
"tipo":"expense",
35-
"cantidad": 45000,
36-
"fecha_registro": 2018-12-24
37-
}),
38-
39-
"4": RecordInDB(**{"id":"4",
40-
"categoria":"pet grooming",
41-
"tipo":"expense",
42-
"cantidad": 500000,
43-
"fecha_registro": 2018-12-25
44-
}),
45-
46-
"5": RecordInDB(**{"id":"5",
47-
"categoria":"mortage",
48-
"tipo":"expense",
49-
"cantidad": 150000,
50-
"fecha_registro": 2018-12-26
51-
}),
22+
1: RecordInDB(**{"id": 1,
23+
"categoria": "salary",
24+
"tipo": "income",
25+
"cantidad": 3000000,
26+
"fecha_registro": datetime(2018, 12, 19).date()
27+
}),
28+
2: RecordInDB(**{"id": 2,
29+
"categoria": "groceries",
30+
"tipo": "expense",
31+
"cantidad": 150000,
32+
"fecha_registro": datetime(2018, 12, 23).date()
33+
}),
34+
3: RecordInDB(**{"id": 3,
35+
"categoria": "healthcare",
36+
"tipo": "expense",
37+
"cantidad": 45000,
38+
"fecha_registro": datetime(2018, 12, 19).date()
39+
}),
40+
41+
4: RecordInDB(**{"id": 4,
42+
"categoria": "pet grooming",
43+
"tipo": "expense",
44+
"cantidad": 500000,
45+
"fecha_registro": datetime(2018, 12, 25).date()
46+
}),
47+
48+
5: RecordInDB(**{"id": 5,
49+
"categoria": "mortage",
50+
"tipo": "expense",
51+
"cantidad": 150000,
52+
"fecha_registro": datetime(2018, 12, 26).date()
53+
}),
5254
}
5355

5456

55-
}
56-
5757
##############métodos para el POST y el GET###################
58+
generator = {"id":5} # AUTOINCREMENTAL
5859

59-
generator ={"id"=0} #AUTOINCREMENTAL
60-
61-
def save_record(record_in_db: RecordInDB): #CREATE RECORD (POST)
62-
generator["id"] = generator ["id"] + 1
60+
def save_record(record_in_db: RecordInDB): # CREATE RECORD (POST)
61+
generator["id"] = generator["id"] + 1
6362
record_in_db.id = generator["id"]
64-
database_records.append(record_in_db)
63+
database_records[record_in_db.id] = record_in_db
6564
return record_in_db
6665

67-
def get_record(): #READ RECORD (GET)
68-
if categoria in database_records.keys():
69-
return database_records[categoria]
66+
def get_record(id: int): # READ RECORD (GET)
67+
if id in database_records.keys():
68+
return database_records[id]
7069
else:
7170
return None
72-
73-
74-
75-

main.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
from db.record_db import RecordInDB
2+
from db.record_db import save_record, get_record
3+
4+
from models.record_models import RecordIn, RecordOut
5+
6+
import datetime
7+
from fastapi import FastAPI
8+
from fastapi import HTTPException
9+
10+
api = FastAPI()
11+
12+
13+
@api.post("/record")
14+
async def create_record(record_in: RecordIn):
15+
record_in_db = RecordInDB(**record_in.dict())
16+
record_in_db = save_record(record_in_db)
17+
18+
record_out = RecordOut(**record_in_db.dict())
19+
20+
return record_out
21+
22+
23+
@api.get("/record/{id}")
24+
async def get_balance(id: int):
25+
26+
record_in_db = get_record(id)
27+
28+
if record_in_db == None:
29+
raise HTTPException(status_code=404, detail="El registro no existe")
30+
31+
record_out = RecordOut(**record_in_db.dict())
32+
record_out.fecha_registro = record_in_db.fecha_registro.strftime("%Y-%m-%d")
33+
34+
return record_out

models/__init__.py

Whitespace-only changes.
-111 Bytes
Binary file not shown.
-740 Bytes
Binary file not shown.

models/record_models.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
##################imports##################################
2+
3+
from pydantic import BaseModel #validación de datos (?)
4+
from datetime import datetime #función para el tipo de dato DATE, DATETIME
5+
from datetime import date
6+
7+
class RecordIn (BaseModel):
8+
categoria: str
9+
tipo: str
10+
cantidad: float
11+
fecha_registro: date #revise
12+
13+
class RecordOut (BaseModel):
14+
id: int = 0
15+
categoria: str
16+
tipo: str
17+
cantidad: float
18+
fecha_registro: date #revise

requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fastapi==0.62.0
2+
uvicorn==0.12.3
3+
pydantic==1.7.3

0 commit comments

Comments
 (0)