Skip to content

Instantly share code, notes, and snippets.

View WeslenPy's full-sized avatar
🏠
Working from home

WeslenPy WeslenPy

🏠
Working from home
View GitHub Profile
@WeslenPy
WeslenPy / post.py
Created December 20, 2023 14:35
Post route B3
import requests
url = "https://arquivos.b3.com.br/bdi/table/SharesInvesVolum/2023-12-19/2023-12-19/1/100"
payload = {}
headers = {}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.json())