-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConnectAPI.py
53 lines (42 loc) · 1.48 KB
/
ConnectAPI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import flet as ft
import requests
def main(page: ft.Page):
page.window_width=550
def conectarAPI(moeda):
url = "https://open.er-api.com/v6/latest/"+moeda
resposta = requests.get(url)
if resposta.status_code==200:
dados = resposta.json()
return dados["rates"]["BRL"]
def convert_currency(e):
cotacao = conectarAPI("USD")
if valor_input.value.isdecimal() and cotacao!=None:
dollars = float(valor_input.value)
reais = dollars * cotacao
result.value = f"BRL {reais: .2f}"
else:
result.value = "Por favor, insira um número válido"
page.update()
# Título
page.title = "Conversor de Moeda (USD para BRL)"
# Campo de entrada para BRL
valor_input = ft.TextField(label="Valor em Dólares (USD)", width=200)
# Botão para acionar a conversão
convert_button = ft.ElevatedButton(text="Converter", on_click=convert_currency)
# Texto para exibir o resultado
result = ft.Text(value="BRL 0.00", size=20)
# Adicionando componentes à página
page.add(
ft.Column(
[
ft.Text("Conversor de Moeda (USD para BRL)", size=30),
valor_input,
convert_button,
result,
],
alignment=ft.MainAxisAlignment.CENTER,
horizontal_alignment=ft.CrossAxisAlignment.CENTER
)
)
# Executar o aplicativo
ft.app(target=main)