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
# 1. Crie uma chamada JsonPath que retorne a Data de Compra de todos os pedidos | |
from operator import truediv | |
from tkinter import N | |
import urllib.request | |
import json | |
def JsonPath(): | |
endereco="https://run.mocky.io/v3/ff723de1-f9c2-44cf-b2d0-7ee020abf7b6" | |
webURL= urllib.request.urlopen(endereco) | |
if (webURL.getcode() == 200): |