Skip to content

Instantly share code, notes, and snippets.

View MattVieira's full-sized avatar

Mateus Vieira MattVieira

View GitHub Profile
@MattVieira
MattVieira / casa_dos_dados.py
Created December 2, 2023 21:47
Request example for Casa dos dados
import requests
# Substitua com a URL da API da Casa dos Dados
url = "https://api.casadosdados.exemplo.com/dados"
# Se necessário, adicione headers para autenticação ou outros propósitos
headers = {
"Authorization": "Bearer seu_token_de_acesso",
# "Outros": "Headers se necessário"
}
I am attesting that this GitHub handle MattVieira is linked to the Tezos account tz1X57RcAScypJwpMxFhivvGgS8wVScpXMX8 for tzprofiles
sig:edsigtqzc623CrcMZHMnR8z7KZCaRPMKacYpHxK6aDs5zmYHsa4V3uvKoksDqtKNTxXMAMWbwDCvsAr1MJjL1mewVVVwHz4txqn
I am attesting that this GitHub handle MattVieira is linked to the Tezos account tz1X57RcAScypJwpMxFhivvGgS8wVScpXMX8 for tzprofiles
sig:edsigtexLKk7CcwD54VuPjremUhw9qsNWjfagTubvxD48yxNGjixjYE4XW631Gxo2oJtaWTUM5S2sVS8pTeATcPrAYJBiZnQPzs
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.routing import Route
from json import JSONDecodeError
async def fibonnaci(request):
pass
async def homepage(request):