Skip to content

Instantly share code, notes, and snippets.

View Jithender5913's full-sized avatar

Sai Jithender Reddy Alla Jithender5913

View GitHub Profile
@Jithender5913
Jithender5913 / main.py
Created May 10, 2022 12:58
LinkedIn Job Applying Automation using Python Selenium
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
import time
chrome_driver_path = r"C:\Users\jithe\Downloads\chromedriver_win32\chromedriver.exe"
s = Service(chrome_driver_path)
@Jithender5913
Jithender5913 / index.html
Last active March 19, 2022 18:27
My sample CV created using HTML
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>JITHENDHARR REDDY</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- <img src="https://p.kindpng.com/picc/s/78-781041_om-button-icon-back-we
@Jithender5913
Jithender5913 / index.html
Last active March 19, 2022 18:18
My Sample Resume created using HTML and CSS
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="CSS-My Site/styles.css">
<link rel="icon" href="CSS-My Site/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Hurricane&family=Montserrat&family=JetBrains+Mono&family=Mukta&family=Sacramento&display=swap" rel="stylesheet">
<title>SAYIE REDDY</title>
</head>
@Jithender5913
Jithender5913 / main1.py
Created February 24, 2022 05:09
Stock Trading News Alert Project using Python News and Twilio APIs
import requests
from twilio.rest import Client
STOCK_NAME = "TSLA"
COMPANY_NAME = "Tesla Inc"
STOCK_ENDPOINT = "https://www.alphavantage.co/query"
NEWS_ENDPOINT = "https://newsapi.org/v2/everything"
API_KEY = "xxx"
@Jithender5913
Jithender5913 / main.py
Created February 21, 2022 14:58
Rain alert project using Twilio API
import requests
from twilio.rest import Client
API_KEY = "xxx"
OWM_endpoint = "https://api.openweathermap.org/data/2.5/onecall"
weather_parameters = {
"lat": 35.652832,
"lon": 139.839478,
"appid": API_KEY,
@Jithender5913
Jithender5913 / main.py
Last active February 21, 2022 03:10
ISS Overhead notifier project using Python SMTP Library, API and Datetime module
import requests
from datetime import datetime
import smtplib
import time
MY_LAT = 51.507351 # Your latitude
MY_LONG = -0.127758 # Your longitude
MY_EMAIL = "sXXX@yahoo.com"
MY_PASSWORD = "xxx"
@Jithender5913
Jithender5913 / main.py
Last active February 20, 2022 02:25
Quizzer App using Python Application Programming Interface(API), Tkinter GUI and OOP
from data import question_data
from question_model import Question
from quiz_brain import QuizBrain
from ui import QuizInterface
question_bank = []
for question in question_data:
question_text = question["question"]
question_answer = question["correct_answer"]
new_question = Question(question_text, question_answer)
@Jithender5913
Jithender5913 / main.py
Created February 10, 2022 07:30
Flash card GUI App using Python Tkinter and pandas library
from tkinter import *
import pandas
import random
BACKGROUND_COLOR = "#B1DDC6"
current_card = {}
to_learn = {}
# ---------------------------- Step 2 - Create New Flash Cards ------------------------------- #
try:
@Jithender5913
Jithender5913 / improvedpasswordJSON.py
Last active February 10, 2022 04:20
Password Manager GUI App using Python Tkinter, List comprehension, JSON data and Exception Handling
from tkinter import *
from tkinter import messagebox
from random import choice, shuffle, randint
import pyperclip
import json
# ---------------------------- PASSWORD GENERATOR ------------------------------- #
def generate_password():
@Jithender5913
Jithender5913 / main.py
Created February 2, 2022 04:42
Pomodoro GUI application using python Tkinter
import math
from tkinter import *
# ---------------------------- CONSTANTS ------------------------------- #
PINK = "#e2979c"
RED = "#e7305b"
GREEN = "#9bdeac"
YELLOW = "#f7f5dd"
FONT_NAME = "Courier"
WORK_MIN = 25