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...
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...
I reencountered classes again. I remember I had a a hard time learning how classes were different from simply defining functions. It was...
from tkinter import * import requests def get_quote(): Â Â quote_url = requests.get(url=' https://api.kanye.rest ') Â Â quote_json =...
import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...
import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...
import pandasdata = pandas.read_csv( 'nato_phonetic_alphabet.csv' )phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}...
Game where there is a picture and the correct text you input flies to the place where the state is. import turtle import pandas import...
I worked with txt files and py files the most but I extended my reach to csv files for data organization and learned about the pandas...
I learned how to read write txt files. I learned how to navigate files. I always wondered how people sent automated emails to so many...
This project really helped me understand OOP more and grasp the concept of inheritance in classes. screen = Screen() screen.setup(height...
Everyone has atleast had one instance in which they downloaded snake.io on their phone and had a few goes at it. I wanted to replicate...
This project was to enhance my understanding of OOP and the modules in python. This project is done by adjusting the speeds of each...
OOP is object oriented programming and the principle itself is quite simple. You assign a class and create attributes and methods....
OOP is object oriented programming which helps shorten code so that it is more legible. OOP organizes coding in classes, attributes and...
from menu import MENU,resources revenue = 0 def count_money(_):   global revenue   quarters = 0.25 * int(input('Quarters:'))   ...
The higher or lower game is a game where the player is asked whether a specific person or thing has more of a quantity such as views,...
Compared to other possible challenges, this project was measurably easy and I was quick to finish it. import random from art import logo...
Blackjack is a card game where you are given 2 cards and either hold or choose new cards depending on whether you feel you are closer to...
When playing with numbers, a calculator is always needed. Why not make one myself? There are many ways to make a calculator but I used...