Skip to content

Jobzi/python-notes

Repository files navigation

Hello This is a Review about Python and Typing

  • type
variable:int|str|bool|float ...

def holaMundo( say:str ) -> str:
    return "Hola "+say
  • Guide devhints of Python
  • Guide w3school of Python

API REST BUIL WITH FASTAPI OF PYTHON

FastAPI framework, alto desempeño, fácil de aprender, rápido de programar, listo para producción

$ pip install fastapi
$ pip install uvicorn[standard]

Basic Example

from fastapi import FastAPI
from typing import Optional

app = FastAPI()

@app.get("/")
def read_root():
    return {"Hello": "World"}

About

This is a little notes, about how use python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages