Skip to content

Instantly share code, notes, and snippets.

View i701's full-sized avatar
๐Ÿ˜
Hi

Abdulla Aidhaan i701

๐Ÿ˜
Hi
  • Secretariate of the Maaungoodhoo Council North Miladhunmadulu
  • Maldives
  • 08:44 (UTC +05:00)
  • X @__i701
View GitHub Profile
@i701
i701 / main.py
Created September 24, 2023 08:14
FastAPI tortoise ORM example with created_at and updated_at workaround
# pylint: disable=E0611,E0401
from typing import List
import pprint
from fastapi import FastAPI
from models import User_Pydantic, UserIn_Pydantic, Users
from pydantic import BaseModel
from starlette.exceptions import HTTPException
from datetime import datetime
from tortoise.contrib.fastapi import register_tortoise