Posts by Sidney Farias • 1 point
1 post
-
0
votes1
answer64
viewsA: redirecting to a website using a button (kivy)
You can use webbrowser Example: import webbrowser def abrir_site(*args): site = 'https://www.youtube.com' webbrowser.open_new(site) botao = Button(text='You Tube',on_release=abrir_site) class…
python-kivyanswered Sidney Farias 1