Stock market price alerter
Lately I’ve been getting API data from existing data and using it to get actual live data. This is done by importing requests. This was...
2 min read
3 views
0 comments
Making a better quiz ui
I reencountered classes again. I remember I had a a hard time learning how classes were different from simply defining functions. It was...
4 min read
4 views
1 comment
Getting quotes and displaying them
from tkinter import * import requests def get_quote(): Â Â quote_url = requests.get(url=' https://api.kanye.rest ') Â Â quote_json =...
1 min read
2 views
1 comment