top of page

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...

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...

Getting quotes and displaying them

from tkinter import * import requests def get_quote():     quote_url = requests.get(url=' https://api.kanye.rest ')     quote_json =...

Password Manager

import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...

Pomodoro alarm

import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...

NATO alphabet

import pandasdata = pandas.read_csv( 'nato_phonetic_alphabet.csv' )phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}...

State guessing game

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...

Working with CSV files

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...

Reading and writing files

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...

Ping-Pong game

This project really helped me understand OOP more and grasp the concept of inheritance in classes. screen = Screen() screen.setup(height...

Making the well-known Snake game

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...

Making a Race game

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

OOP is object oriented programming and the principle itself is quite simple. You assign a class and create attributes and methods....

Coffee machine coding with OOP

OOP is object oriented programming which helps shorten code so that it is more legible. OOP organizes coding in classes, attributes and...

Coffee machine coding

from menu import MENU,resources revenue = 0 def count_money(_):     global revenue     quarters = 0.25 * int(input('Quarters:'))    ...

Higher or Lower game

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,...

Making a number guessing game

Compared to other possible challenges, this project was measurably easy and I was quick to finish it. import random from art import logo...

Making a Blackjack game

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...

Making a calculator

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...

© 2024 by GifTED. Powered and secured by Wix

bottom of page