Add a new project (Bank Interest Calculator[1 python script, 1 README file]) and modified the project list by adding the new project's name and my GitHub

This commit is contained in:
C Tu 2024-05-26 18:09:51 +06:30
parent c4f08d05b5
commit fb29336703
3 changed files with 213 additions and 137 deletions

View File

@ -0,0 +1,13 @@
# Bank Interest Calculator
Simple Text-based interest calculator
### What can I do with it?:
- Calculate the interest amount
- Calculate the total amount including the interest
#### for the specified amount of years.
### How can I run it?
#### You can run it via:
- terminal or command prompt
- any IDE that supports Python

View File

@ -0,0 +1,62 @@
running = True
def program(choice):
years = int(input('How many years are you going to save? >> '))
amount = int(input('How much are you saving yearly? >> '))
r = input('What is the interest rate per year? (eg: 10, 0.1) >> ')
try:
rate = int(r)
except ValueError:
rate = float(r)
new_amount = 0
balance = 0
total = 0
interest = 0
n = 0
if choice.lower() == 'i':
for i in range(0, int(years)):
n += 1
if type(rate) is float:
interest += amount * rate
elif type(rate) is int:
interest += amount * (rate / 100)
print(f"In year {n}, the interest earned will be ${interest}")
total += interest
print(f'By the end of year {n}, the total interest earned will be ${total}.')
elif choice.lower() == 't':
for i in range(0, int(years)):
n += 1
if type(rate) is float:
if balance == 0:
interest = amount * rate
balance = amount + interest
elif balance > 0:
old_balance = balance
interest = (old_balance + amount) * rate
balance = old_balance + amount + interest
elif type(rate) is int:
if balance == 0:
interest = amount * (rate / 100)
balance = amount + interest
elif balance > 0:
old_balance = balance
interest = (old_balance + amount) * (rate / 100)
balance = old_balance + amount + interest
print(f"In year {n}, your total balance will be ${round(balance, 2)}")
print(f'By the end of year {n}, your total balance will be {round(balance, 2)}.')
while running:
print(
"How would you like to be calculated?\n'I' for total interest amount\n'T' for total balance including interest "
"amount\n'E' to exit program")
user_choice = input("Method >> ")
if user_choice.lower() == 'e':
running = False
else:
program(user_choice)

275
README.md
View File

@ -21,143 +21,144 @@ This repo is a compilation of some *awesome* Python scripts that automate some b
## What do we have: ## What do we have:
So far, the following projects have been integrated to this repo: So far, the following projects have been integrated to this repo:
| Project Name | Contributors | | Project Name | Contributors |
|--|--| |-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
|[2048](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/2048)|[Krunal](https://github.com/gitkp11)| | [2048](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/2048) | [Krunal](https://github.com/gitkp11) |
|[AI chatbot](Artificial-intelligence_bot) |[umar abdullahi](https://github.com/umarbrowser) | | [AI chatbot](Artificial-intelligence_bot) | [umar abdullahi](https://github.com/umarbrowser) |
|[AI for guess the number](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/AI_for_Guess_the_number) | [Omar Sameh](https://github.com/ShadowHunter15) | | [AI for guess the number](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/AI_for_Guess_the_number) | [Omar Sameh](https://github.com/ShadowHunter15) |
|[Address locator](Location_Of_Adress) | [Chris]() | | [Address locator](Location_Of_Adress) | [Chris]() |
|[Asymmetric Encryption](asymmetric_cryptography) |[victor matheus](https://github.com/victormatheusc) | | [Asymmetric Encryption](asymmetric_cryptography) | [victor matheus](https://github.com/victormatheusc) |
|[Attachment Unique Mail](Attachment_Unique_Mail) |[Arnav Dandekar](https://github.com/4rnv) | | [Attachment Unique Mail](Attachment_Unique_Mail) | [Arnav Dandekar](https://github.com/4rnv) |
|[Automated calendar](automated_calendar) | [J.A. Hernández](https://github.com/jesusalberto18) | | [Automated calendar](automated_calendar) | [J.A. Hernández](https://github.com/jesusalberto18) |
|[Automated emails](automated_email) | [Suvigya](https://github.com/SuvigyaJain1) | | [Automated emails](automated_email) | [Suvigya](https://github.com/SuvigyaJain1) |
|[Battery_notification](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Battery_notification/)|[Krishna Sharma](https://github.com/krishnasharma1386)| | [Bank Interest Calculator](Bank_Interest_Calculator) | [C Tu](https://github.com/ninja-noodle) |
|[Better_CSV_Storage](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Better_CSV_Storage) | [Bhargav Kuvadiya](https://github.com/techdobz) | | [Battery_notification](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Battery_notification/) | [Krishna Sharma](https://github.com/krishnasharma1386) |
|[Bitcoin price GUI](Bitcoin-Price-GUI) |[Amirul Abu](https://github.com/amirulabu) | | [Better_CSV_Storage](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Better_CSV_Storage) | [Bhargav Kuvadiya](https://github.com/techdobz) |
|[CLI Calculator](cli_calculator)|[Willian GL](https://github.com/williangl) | | [Bitcoin price GUI](Bitcoin-Price-GUI) | [Amirul Abu](https://github.com/amirulabu) |
|[COVID visualiser (real-time) ](covid_visualiser)|[Tushar Gupta](https://github.com/tushar5526)| | [CLI Calculator](cli_calculator) | [Willian GL](https://github.com/williangl) |
|[CSV to Excel](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/CSV-to-Excel)|[xemeds](https://github.com/xemeds) | | [COVID visualiser (real-time) ](covid_visualiser) | [Tushar Gupta](https://github.com/tushar5526) |
|[Caesar Cipher](caesar_cipher) |[epi052](https://github.com/epi052) | | [CSV to Excel](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/CSV-to-Excel) | [xemeds](https://github.com/xemeds) |
|[Checksum tool](Checksum) |[Austin Ewens](https://github.com/aewens) | | [Caesar Cipher](caesar_cipher) | [epi052](https://github.com/epi052) |
|[Clean_up_photo](Clean_up_photo_directory)|[sritanmay001](https://github.com/sritanmy001)| | [Checksum tool](Checksum) | [Austin Ewens](https://github.com/aewens) |
|[Codechef autosubmitter](Codechef-Code-Submitter) |[Harshit Mahajan](https://github.com/hmahajan99) | | [Clean_up_photo](Clean_up_photo_directory) | [sritanmay001](https://github.com/sritanmy001) |
|[Codeforces Checker](codeforcesChecker)|[Jinesh Parakh](https://github.com/jineshparakh)| | [Codechef autosubmitter](Codechef-Code-Submitter) | [Harshit Mahajan](https://github.com/hmahajan99) |
|[Colored B&W Image Converter](Color_to_BW_Converter) |[Nitish Srivastava](https://github.com/nitish-iiitd) | | [Codeforces Checker](codeforcesChecker) | [Jinesh Parakh](https://github.com/jineshparakh) |
|[Contact 'Leads' Distribution](Contact-Distribution) |[Tiago Cordeiro](https://github.com/tiagocordeiro) | | [Colored B&W Image Converter](Color_to_BW_Converter) | [Nitish Srivastava](https://github.com/nitish-iiitd) |
|[Countdown](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Countdown)|[Jeremias Gomes](https://github.com/j3r3mias)| | [Contact 'Leads' Distribution](Contact-Distribution) | [Tiago Cordeiro](https://github.com/tiagocordeiro) |
|[csv_to_json](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/csv_to_json)|[MoiZ](https://github.com/TechBoyy6)| | [Countdown](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Countdown) | [Jeremias Gomes](https://github.com/j3r3mias) |
|[Cricket Matches web Scraper](CricBuzz_Score_Update) |[Divy Ranjan](https://github.com/divyranjan17) | | [csv_to_json](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/csv_to_json) | [MoiZ](https://github.com/TechBoyy6) |
|[Crypt socket](Crypt_Socket)|[Willian GL](https://github.com/williangl) | | [Cricket Matches web Scraper](CricBuzz_Score_Update) | [Divy Ranjan](https://github.com/divyranjan17) |
|[Cryptocurrency Converter](Cryptocurrency-converter) |[AdnCodz](https://github.com/AdnCodez) | | [Crypt socket](Crypt_Socket) | [Willian GL](https://github.com/williangl) |
|[Cryptocurrency Prices](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Cryptocurrency-Prices) |[xemeds](https://github.com/xemeds) | | [Cryptocurrency Converter](Cryptocurrency-converter) | [AdnCodz](https://github.com/AdnCodez) |
|[Current City Weather](Current_City_Weather) |[Jesse Bridge](https://github.com/jessebridge) | | [Cryptocurrency Prices](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Cryptocurrency-Prices) | [xemeds](https://github.com/xemeds) |
|[DOH DIG](DOH-Dig/) | [Ryan](https://github.com/awsumco) | | [Current City Weather](Current_City_Weather) | [Jesse Bridge](https://github.com/jessebridge) |
|[Database-As-Storage](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Database-As-Storage) | [Bhargav Kuvadiya](https://github.com/techdobz) | | [DOH DIG](DOH-Dig/) | [Ryan](https://github.com/awsumco) |
|[Directory Tree Visualizer](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Directory_Tree_Generator) | [Harpreet Singh Saluja](https://github.com/hssaluja25/) | | [Database-As-Storage](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Database-As-Storage) | [Bhargav Kuvadiya](https://github.com/techdobz) |
|[Directory organizer](Directory-organizer) | [Athul P](https://github.com/athulpn) | | [Directory Tree Visualizer](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Directory_Tree_Generator) | [Harpreet Singh Saluja](https://github.com/hssaluja25/) |
|[Download Page as PDF](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Download-page-as-pdf)|[Jeremias Gomes](https://github.com/j3r3mias)| | [Directory organizer](Directory-organizer) | [Athul P](https://github.com/athulpn) |
|[Elasticsearch snapshot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/elastic-snapshot) | [Joe Ryan](https://github.com/joeryan) | | [Download Page as PDF](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Download-page-as-pdf) | [Jeremias Gomes](https://github.com/j3r3mias) |
|[English Theasaurus](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/English_Theasauras/) | [Ansh Dhingra](https://github.com/anshdhinhgra47) | | [Elasticsearch snapshot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/elastic-snapshot) | [Joe Ryan](https://github.com/joeryan) |
|[Excel Files Merger](Excel_Files_Merger) | [Andrei N](https://github.com/Andrei-Niculae)| | [English Theasaurus](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/English_Theasauras/) | [Ansh Dhingra](https://github.com/anshdhinhgra47) |
|[Excel to List](Excel_to_ListofList) | [Nitish Srivastava](https://github.com/nitish-iiitd)| | [Excel Files Merger](Excel_Files_Merger) | [Andrei N](https://github.com/Andrei-Niculae) |
|[Extended_ip_address_info](extended_ip_address_info) | [hafpaf](https://github.com/hafpaf)| | [Excel to List](Excel_to_ListofList) | [Nitish Srivastava](https://github.com/nitish-iiitd) |
|[Face Recognition](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Face_recognition)|[LOKESH KHURANA](https://github.com/theluvvkhurana)| | [Extended_ip_address_info](extended_ip_address_info) | [hafpaf](https://github.com/hafpaf) |
|[Fibonacci_Sequence_Generator](Fibonacci_Sequence_Generator) | [John Wesley Kommala](https://github.com/JohnWesleyK)| | [Face Recognition](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Face_recognition) | [LOKESH KHURANA](https://github.com/theluvvkhurana) |
|[File Carving](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/File_Carving) | [Yeryeong Kim](https://github.com/icarusicarus/) | | [Fibonacci_Sequence_Generator](Fibonacci_Sequence_Generator) | [John Wesley Kommala](https://github.com/JohnWesleyK) |
|[File Encrypt Decrypt](file-encrypt-decrypt)|[Aditya Arakeri](https://github.com/adityaarakeri)| | [File Carving](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/File_Carving) | [Yeryeong Kim](https://github.com/icarusicarus/) |
|[FileMagic Organizer](./FileMagic_Organizer)|[malivinayak](https://github.com/malivinayak)| | [File Encrypt Decrypt](file-encrypt-decrypt) | [Aditya Arakeri](https://github.com/adityaarakeri) |
|[File Organizer](File-Organizer)|[Ayush Bhardwaj](https://github.com/hastagAB)| | [FileMagic Organizer](./FileMagic_Organizer) | [malivinayak](https://github.com/malivinayak) |
|[File Sharing Bot](File-Sharing-Bot) | [Darshan Patel](https://github.com/DarshanPatel11)| | [File Organizer](File-Organizer) | [Ayush Bhardwaj](https://github.com/hastagAB) |
|[File explorer](File-Explorer-Dialog-Box) | [Nikhil Kumar Singh](https://github.com/nikhilkumarsingh)| | [File Sharing Bot](File-Sharing-Bot) | [Darshan Patel](https://github.com/DarshanPatel11) |
|[Find PhoneNumber in String](Find-PhoneNumber-in-String)|[Austin Zuniga](https://github.com/AustinZuniga)| | [File explorer](File-Explorer-Dialog-Box) | [Nikhil Kumar Singh](https://github.com/nikhilkumarsingh) |
|[Flash card quizzer](Flash-card-Challenge) |[Utkarsh Sharma](https://github.com/Utkarsh1308) | | [Find PhoneNumber in String](Find-PhoneNumber-in-String) | [Austin Zuniga](https://github.com/AustinZuniga) |
|[Folder Locker and hider](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Folder%20Locker%20%26%20Hider)|[Prajjwal Pathak](https://github.com/pyguru123)| | [Flash card quizzer](Flash-card-Challenge) | [Utkarsh Sharma](https://github.com/Utkarsh1308) |
|[Folder Manager](Folder_Manager)|[Harsh Raj](https://github.com/DeadProgrammer0)| | [Folder Locker and hider](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Folder%20Locker%20%26%20Hider) | [Prajjwal Pathak](https://github.com/pyguru123) |
|[Frammed text generator](FramedText) | [jcdwalle](https://github.com/jcdwalle)| | [Folder Manager](Folder_Manager) | [Harsh Raj](https://github.com/DeadProgrammer0) |
|[Get Time By TimeZone](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Get_Time_TimezoneWise)|[Parth Shah](https://github.com/codingis4noobs) | | [Frammed text generator](FramedText) | [jcdwalle](https://github.com/jcdwalle) |
|[git_automation](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/git_automation)| [loge1998](https://github.com/loge1998)| | [Get Time By TimeZone](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Get_Time_TimezoneWise) | [Parth Shah](https://github.com/codingis4noobs) |
|[Github repo creator](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Git_repo_creator)|[Harish Tiwari ](https://github.com/optimist2309)| | [git_automation](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/git_automation) | [loge1998](https://github.com/loge1998) |
|[Github Review Bot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Github-Review-Bot)|[Gaurav Giri](https://github.com/gaurovgiri)| | [Github repo creator](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Git_repo_creator) | [Harish Tiwari ](https://github.com/optimist2309) |
|[GithubBot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Github_Bot)|[Abhilasha](https://github.com/Abhilasha06)| | [Github Review Bot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Github-Review-Bot) | [Gaurav Giri](https://github.com/gaurovgiri) |
|[Gmail Mailing Script](mailing) |[mayank-kapur](https://github.com/kapurm17) | | [GithubBot](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Github_Bot) | [Abhilasha](https://github.com/Abhilasha06) |
|[Google Meet Joiner](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/google_meet_joiner)|[JohanSanSebastian](https://github.com/JohanSanSebastian)| | [Gmail Mailing Script](mailing) | [mayank-kapur](https://github.com/kapurm17) |
|[HTML Table to List](HTML_Table_to_List) | [Nitish Srivastava](https://github.com/nitish-iiitd)| | [Google Meet Joiner](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/google_meet_joiner) | [JohanSanSebastian](https://github.com/JohanSanSebastian) |
|[Handwrting DNN recognizer](Handwriting_Recognizer) |[Chris]() | | [HTML Table to List](HTML_Table_to_List) | [Nitish Srivastava](https://github.com/nitish-iiitd) |
|[Harry Potter Cloak](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Harry-Potter-Cloak) | [thesmartdeveloperr](https://github.com/thesmartdeveloperr)| | [Handwrting DNN recognizer](Handwriting_Recognizer) | [Chris]() |
|[IMDB TV Series Info Extractor](imdb_episode_ratings)|[Yash Raj Sarrof](https://github.com/yashYRS) | | [Harry Potter Cloak](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Harry-Potter-Cloak) | [thesmartdeveloperr](https://github.com/thesmartdeveloperr) |
|[IMDBQuerier](IMDBQuerier)|[Burak Bekci](https://github.com/Bekci)| | [IMDB TV Series Info Extractor](imdb_episode_ratings) | [Yash Raj Sarrof](https://github.com/yashYRS) |
|[IP Address ](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/ipaddress)|[Xenium](https://github.com/xeniumcode)| | [IMDBQuerier](IMDBQuerier) | [Burak Bekci](https://github.com/Bekci) |
|[Image Compressor](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Image_Compressor)|[Prathima Kadari](https://github.com/prathimacode-hub)| | [IP Address ](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/ipaddress) | [Xenium](https://github.com/xeniumcode) |
|[Image To PDF](images2pdf)|[msaoudallah](https://github.com/msaoudallah)| | [Image Compressor](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Image_Compressor) | [Prathima Kadari](https://github.com/prathimacode-hub) |
|[Image Watermarker (batch)](imageWatermarker)|[Remco Halman](https://github.com/remcohalman)| | [Image To PDF](images2pdf) | [msaoudallah](https://github.com/msaoudallah) |
|[Image circle formatter](Image-Circulator) |[Berk Gureken](https://github.com/bureken) | | [Image Watermarker (batch)](imageWatermarker) | [Remco Halman](https://github.com/remcohalman) |
|[Independent RSA Communication Algorithm](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/RSA_Communication)|[Miguel Santos](https://github.com/wi6n3l)| | [Image circle formatter](Image-Circulator) | [Berk Gureken](https://github.com/bureken) |
|[Instadp Web Scrapper](InstadpShower)|[Psychiquest](https://github.com/psychiquest)| | [Independent RSA Communication Algorithm](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/RSA_Communication) | [Miguel Santos](https://github.com/wi6n3l) |
|[Instagram Video Downloader](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/insta_video_downloader)|[Shobhit Bhosure](https://github.com/shobhit99) | | [Instadp Web Scrapper](InstadpShower) | [Psychiquest](https://github.com/psychiquest) |
|[JSON file to YAML convertor](https://github.com/saksham117/Awesome-Python-Scripts/tree/master/json-to-yaml)|[Saksham Basandrai](https://github.com/saksham117)| | [Instagram Video Downloader](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/insta_video_downloader) | [Shobhit Bhosure](https://github.com/shobhit99) |
|[Keylogger](Keylogger) |[Preet Mishra](https://github.com/preetmishra) | | [JSON file to YAML convertor](https://github.com/saksham117/Awesome-Python-Scripts/tree/master/json-to-yaml) | [Saksham Basandrai](https://github.com/saksham117) |
|[Medium Article Downloader](medium_article_downloader)|[coolsonu39](https://github.com/coolsonu39)| | [Keylogger](Keylogger) | [Preet Mishra](https://github.com/preetmishra) |
|[Minecraft Server in background](Minecraft_server_in_background)|[Max von Forell](https://github.com/mvforell)| | [Medium Article Downloader](medium_article_downloader) | [coolsonu39](https://github.com/coolsonu39) |
|[Own IP locator](Location_Of_Own_IP_Adress)|[Chris]()| | [Minecraft Server in background](Minecraft_server_in_background) | [Max von Forell](https://github.com/mvforell) |
|[PDF2text](PDF2text)|[QuangPH](https://github.com/quangph-1686a)| | [Own IP locator](Location_Of_Own_IP_Adress) | [Chris]() |
|[PDFsplitter](PDFsplitter)|[Prathamesh-Ghatole](https://github.com/Prathamesh-Ghatole)| | [PDF2text](PDF2text) | [QuangPH](https://github.com/quangph-1686a) |
|[PX to REM](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/PX-to-REM)|[Atthaphon Urairat](https://github.com/uatthaphon) | | [PDFsplitter](PDFsplitter) | [Prathamesh-Ghatole](https://github.com/Prathamesh-Ghatole) |
|[Pdf to AudioBook Converter](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/PdfToAudio)|[Ayesha Gull](https://github.com/ayeshag7/)| | [PX to REM](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/PX-to-REM) | [Atthaphon Urairat](https://github.com/uatthaphon) |
|[Plagiarism_detector](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Plagiarism_detector)|[Akshita Singhal](https://github.com/akshitasinghal4444)| | [Pdf to AudioBook Converter](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/PdfToAudio) | [Ayesha Gull](https://github.com/ayeshag7/) |
|[Port Scanner](Port_Scanner)|[Plutoberth](https://github.com/Plutoberth)| | [Plagiarism_detector](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Plagiarism_detector) | [Akshita Singhal](https://github.com/akshitasinghal4444) |
|[Pressure_Converter](https://github.com/E-wave112/Awesome-Python-Scripts/tree/master/Pressure_Converter)|[E-Wave](https://github.com/E-wave112)| | [Port Scanner](Port_Scanner) | [Plutoberth](https://github.com/Plutoberth) |
|[Pretty CSV](Pretty-CSV)|[Frizz925](https://github.com/Frizz925)| | [Pressure_Converter](https://github.com/E-wave112/Awesome-Python-Scripts/tree/master/Pressure_Converter) | [E-Wave](https://github.com/E-wave112) |
|[PyRecorder](PyRecorder)|[Rocky Jain](https://github.com/jainrocky)| | [Pretty CSV](Pretty-CSV) | [Frizz925](https://github.com/Frizz925) |
|[py_based_music_player](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/py_based_music_player) | [Bhargav Kuvadiya](https://github.com/techdobz) | | [PyRecorder](PyRecorder) | [Rocky Jain](https://github.com/jainrocky) |
|[Py_Cleaner](Py_Cleaner) | [Abhishek Dobliyal](https://github.com/Abhishek-Dobliyal)| | [py_based_music_player](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/py_based_music_player) | [Bhargav Kuvadiya](https://github.com/techdobz) |
|[Python Algebra Solver](Algebra-Solver)|[Sengxay Xayachack](https://github.com/frankxayachack)| | [Py_Cleaner](Py_Cleaner) | [Abhishek Dobliyal](https://github.com/Abhishek-Dobliyal) |
|[RSA Algorithm](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/RSA_Algorithm)|[Chinmay Rane](https://github.com/Chinmayrane16)| | [Python Algebra Solver](Algebra-Solver) | [Sengxay Xayachack](https://github.com/frankxayachack) |
|[RSA Key Pair Generator](RSA-key-pairs) | [Aditya Parikh](https://github.com/obiwan69) | | [RSA Algorithm](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/RSA_Algorithm) | [Chinmay Rane](https://github.com/Chinmayrane16) |
|[Random Password Generators](Random_Password_Generator)| [Hafpaf](https://github.com/hafpaf) and [Renderer-RCT2](https://github.com/Renderer-RCT2)| | [RSA Key Pair Generator](RSA-key-pairs) | [Aditya Parikh](https://github.com/obiwan69) |
|[Random name generator](Random_Names_Generator)| [Ayush Bhardwaj](https://github.com/hastagAB)| | [Random Password Generators](Random_Password_Generator) | [Hafpaf](https://github.com/hafpaf) and [Renderer-RCT2](https://github.com/Renderer-RCT2) |
|[Random_Email_Generator](Random_Email_Generator)|[Shubham Garg](https://github.com/shub-garg)| | [Random name generator](Random_Names_Generator) | [Ayush Bhardwaj](https://github.com/hastagAB) |
|[Remove-Duplicate-Files](Remove-Duplicate-Files)|[Aayushi Varma](https://github.com/aayuv17)| | [Random_Email_Generator](Random_Email_Generator) | [Shubham Garg](https://github.com/shub-garg) |
|[Rock-Paper-Scissor Game](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Rock-Paper-Scissor)|[Punit Sakre](https://github.com/punitsakre23)| | [Remove-Duplicate-Files](Remove-Duplicate-Files) | [Aayushi Varma](https://github.com/aayuv17) |
|[send_whatsapp_message](send_whatsapp_message)|[Mukesh Prasad](https://github.com/mukeshprasad)| | [Rock-Paper-Scissor Game](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Rock-Paper-Scissor) | [Punit Sakre](https://github.com/punitsakre23) |
|[Send messages to sqs in parallel](send_sqs_messages_in_parallel)|[Jinam Shah](https://github.com/jinamshah)| | [send_whatsapp_message](send_whatsapp_message) | [Mukesh Prasad](https://github.com/mukeshprasad) |
|[Server Ping](Ping_Server)|[prince]()| | [Send messages to sqs in parallel](send_sqs_messages_in_parallel) | [Jinam Shah](https://github.com/jinamshah) |
|[Signature photo to PNG converter](signature2png)|[Rodolfo Ferro](https://github.com/RodolfoFerro)| | [Server Ping](Ping_Server) | [prince]() |
|[Simple Webpage Parser](SimpleWebpageParser)|[Nitish Srivastava](https://github.com/nitish-iiitd)| | [Signature photo to PNG converter](signature2png) | [Rodolfo Ferro](https://github.com/RodolfoFerro) |
|[Slideshare downloader](Slideshare-Downloader)|[Chris Goes](https://github.com/GhostofGoes)| | [Simple Webpage Parser](SimpleWebpageParser) | [Nitish Srivastava](https://github.com/nitish-iiitd) |
|[SMS your location](SmsYourLocation)|[prince]()| | [Slideshare downloader](Slideshare-Downloader) | [Chris Goes](https://github.com/GhostofGoes) |
|[Spotify Downloader](spotify_downloader)|[Sagar Patel](https://github.com/sagar627)| | [SMS your location](SmsYourLocation) | [prince]() |
|[Squid installer for Ubuntu](Squid-Proxy-Installer-for-Ubuntu16)|[Berkay Demir]()| | | [Spotify Downloader](spotify_downloader) | [Sagar Patel](https://github.com/sagar627) |
|[SSH Host adder](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/SSH_Host_Adder)|[NinoDoko](https://github.com/NinoDoko)| | [Squid installer for Ubuntu](Squid-Proxy-Installer-for-Ubuntu16) | [Berkay Demir]() | |
|[Steg_Tool](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Steg_Tool/)|[Shankar JP](https://github.com/shankarjp)| | [SSH Host adder](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/SSH_Host_Adder) | [NinoDoko](https://github.com/NinoDoko) |
|[sudoku-solver](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/sudoku-solver) | [Rishabh Umrao](https://github.com/ayedaemon) | | [Steg_Tool](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Steg_Tool/) | [Shankar JP](https://github.com/shankarjp) |
|[Subtitle downloader](Subtitle-downloader)|[Kaushlendra Pratap](https://github.com/kaushl1998)| | [sudoku-solver](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/sudoku-solver) | [Rishabh Umrao](https://github.com/ayedaemon) |
|[TTS - Text to Speech Mp3](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TTS_Text_to_Speech_Mp3)|[Antonio Andrade](https://github.com/xAndrade)| | [Subtitle downloader](Subtitle-downloader) | [Kaushlendra Pratap](https://github.com/kaushl1998) |
|[Take Screenshot](Take_screenshot)|[Moad Mohammed Elhebri](https://github.com/moadmmh)| | [TTS - Text to Speech Mp3](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TTS_Text_to_Speech_Mp3) | [Antonio Andrade](https://github.com/xAndrade) |
|[Tambola_Ticket_Generator](Tambola_Ticket_Generator)|[Amandeep_Singh](https://github.com/Synster)| | [Take Screenshot](Take_screenshot) | [Moad Mohammed Elhebri](https://github.com/moadmmh) |
|[Test Your Internet Speed](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TestMyInternetSpeed)|[TheSmartDeveloperr](https://github.com/thesmartdeveloperr)| | [Tambola_Ticket_Generator](Tambola_Ticket_Generator) | [Amandeep_Singh](https://github.com/Synster) |
|[TicTacToe AI and 2 players](https://github.com/ShadowHunter15/Awesome-Python-Scripts/tree/master/TicTacToe_AI_and_2_players) | [Omar Sameh](https://github.com/ShadowHunter15) | | [Test Your Internet Speed](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TestMyInternetSpeed) | [TheSmartDeveloperr](https://github.com/thesmartdeveloperr) |
|[To Do Bot](To%20Do%20Bot) | [Darshan Patel](https://github.com/DarshanPatel11)| | [TicTacToe AI and 2 players](https://github.com/ShadowHunter15/Awesome-Python-Scripts/tree/master/TicTacToe_AI_and_2_players) | [Omar Sameh](https://github.com/ShadowHunter15) |
|[Top_News](Top_News)|[Attupatil](https://github.com/Attupatil)| | [To Do Bot](To%20Do%20Bot) | [Darshan Patel](https://github.com/DarshanPatel11) |
|[Translate CLI](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TranslateCLI)|[Rodrigo Oliveira](https://github.com/rodrigocam)| | [Top_News](Top_News) | [Attupatil](https://github.com/Attupatil) |
|[URL shortener](url_shortener)|[Sam Ebison](https://github.com/ebsa491)| | [Translate CLI](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/TranslateCLI) | [Rodrigo Oliveira](https://github.com/rodrigocam) |
|[Upload Files to S3](Upload_files_to_s3)|[Jayram Nai](https://github.com/jramnai)| | [URL shortener](url_shortener) | [Sam Ebison](https://github.com/ebsa491) |
|[Vinegère Cipher](vigenere_cipher)|[victoni](https://github.com/victoni)| | [Upload Files to S3](Upload_files_to_s3) | [Jayram Nai](https://github.com/jramnai) |
|[Web proxy](Proxy-Request)|[Nikhil Kumar Singh](https://github.com/nikhilkumarsingh)| | [Vinegère Cipher](vigenere_cipher) | [victoni](https://github.com/victoni) |
|[Website Url Detector](Website_Url_Detector)|[sonniki](https://github.com/sonniki)| | [Web proxy](Proxy-Request) | [Nikhil Kumar Singh](https://github.com/nikhilkumarsingh) |
|[Website blocker](Website-Blocker)|[Ayush Bhardwaj](https://github.com/hastagAB)| | [Website Url Detector](Website_Url_Detector) | [sonniki](https://github.com/sonniki) |
|[WiFi Password Viewer](Wifi-Password)|[Sagar Patel](https://github.com/sagar627)| | [Website blocker](Website-Blocker) | [Ayush Bhardwaj](https://github.com/hastagAB) |
|[Wikipedia-Search](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Wikipedia-Search)|[Nissaar](https://github.com/Nissaar) | | [WiFi Password Viewer](Wifi-Password) | [Sagar Patel](https://github.com/sagar627) |
|[Word Frequency Counter](Word_Frequency_Counter)|[sonniki](https://github.com/sonniki)| | [Wikipedia-Search](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Wikipedia-Search) | [Nissaar](https://github.com/Nissaar) |
|[Word generator](Word-generator)|[TGLIDE](https://github.com/TGlide)| | [Word Frequency Counter](Word_Frequency_Counter) | [sonniki](https://github.com/sonniki) |
|[Work log generator](Work_Log_Generator)|[Maël Pedretti](https://github.com/73VW)| | [Word generator](Word-generator) | [TGLIDE](https://github.com/TGlide) |
|[X Scrapper](X_Scrapper)|[Shreeram](https://github.com/iamshreeram)| | [Work log generator](Work_Log_Generator) | [Maël Pedretti](https://github.com/73VW) |
|[YTS Torrents](yts_torrents)|[Mayank Nader](https://github.com/makkoncept)| | [X Scrapper](X_Scrapper) | [Shreeram](https://github.com/iamshreeram) |
|[Yoda-speak Translator](speak_like_yoda)|[sonniki](https://github.com/sonniki) | | [YTS Torrents](yts_torrents) | [Mayank Nader](https://github.com/makkoncept) |
|[Youtube video downloader](Youtube_Video_Downloader)|[Christopher He](https://github.com/hecris)| | [Yoda-speak Translator](speak_like_yoda) | [sonniki](https://github.com/sonniki) |
|[Zabbix API](zabbix_api)|[msg4sunny](https://github.com/msg4sunny)| | [Youtube video downloader](Youtube_Video_Downloader) | [Christopher He](https://github.com/hecris) |
|[Zip password cracker](zip_password_cracker)|[umar abdullahi](https://github.com/umarbrowser)| | [Zabbix API](zabbix_api) | [msg4sunny](https://github.com/msg4sunny) |
|[Task Scheduler](Task-Scheduler)|[heysagnik](https://github.com/heysagnik)| | [Zip password cracker](zip_password_cracker) | [umar abdullahi](https://github.com/umarbrowser) |
|[PDF Password Decypter](PDF_Password_Decrypter)|[parthasdey2304](https://github.com/parthasdey2304)| | [Task Scheduler](Task-Scheduler) | [heysagnik](https://github.com/heysagnik) |
| [PDF Password Decypter](PDF_Password_Decrypter) | [parthasdey2304](https://github.com/parthasdey2304) |
## How to use: ## How to use:
- Clone/Download the directory and navigate to each folder. Or... - Clone/Download the directory and navigate to each folder. Or...