This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle MattVieira is linked to the Tezos account tz1X57RcAScypJwpMxFhivvGgS8wVScpXMX8 for tzprofiles | |
sig:edsigtqzc623CrcMZHMnR8z7KZCaRPMKacYpHxK6aDs5zmYHsa4V3uvKoksDqtKNTxXMAMWbwDCvsAr1MJjL1mewVVVwHz4txqn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle MattVieira is linked to the Tezos account tz1X57RcAScypJwpMxFhivvGgS8wVScpXMX8 for tzprofiles | |
sig:edsigtexLKk7CcwD54VuPjremUhw9qsNWjfagTubvxD48yxNGjixjYE4XW631Gxo2oJtaWTUM5S2sVS8pTeATcPrAYJBiZnQPzs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |