mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-02-17 13:58:10 +00:00
loop method
This commit is contained in:
parent
a8aa52077c
commit
550da1677d
59
scripts/Horoscope/script.py
Normal file
59
scripts/Horoscope/script.py
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
# Python script to get day-to-day horoscope
|
||||||
|
import os
|
||||||
|
import requests
|
||||||
|
import msvcrt
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
|
||||||
|
def printBanner():
|
||||||
|
banner = '''
|
||||||
|
|
||||||
|
--------------------Read your Day-to-day horoscope------------------------
|
||||||
|
██╗ ██╗ ██████╗ ██████╗ ██████╗ ███████╗ ██████╗ ██████╗ ██████╗ ███████╗
|
||||||
|
██║ ██║██╔═══██╗██╔══██╗██╔═══██╗██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔════╝
|
||||||
|
███████║██║ ██║██████╔╝██║ ██║███████╗██║ ██║ ██║██████╔╝█████╗
|
||||||
|
██╔══██║██║ ██║██╔══██╗██║ ██║╚════██║██║ ██║ ██║██╔═══╝ ██╔══╝
|
||||||
|
██║ ██║╚██████╔╝██║ ██║╚██████╔╝███████║╚██████╗╚██████╔╝██║ ███████╗
|
||||||
|
|
||||||
|
|
||||||
|
'''
|
||||||
|
print(banner)
|
||||||
|
|
||||||
|
|
||||||
|
def read_horoscope(sign: int, day: int) -> str:
|
||||||
|
if not isinstance(sign, int) or sign < 1 or sign > 12:
|
||||||
|
return "Input a valid number the represents the sign from 1 to 12"
|
||||||
|
if day < 1 or day > 3 or not isinstance(day, int):
|
||||||
|
return "Input a valid number the represents the day from 1 to 3"
|
||||||
|
days = ['yesterday', 'today', 'tomorrow']
|
||||||
|
url = (
|
||||||
|
f"https://www.horoscope.com/us/horoscopes/general/\
|
||||||
|
horoscope-general-daily-{days[day-1]}.aspx?sign={sign}"
|
||||||
|
)
|
||||||
|
soup = BeautifulSoup(requests.get(url).content, "html.parser")
|
||||||
|
return soup.find("div", class_="main-horoscope").p.text
|
||||||
|
|
||||||
|
|
||||||
|
def refresh():
|
||||||
|
os.system('cls')
|
||||||
|
printBanner()
|
||||||
|
|
||||||
|
|
||||||
|
again = 'y'
|
||||||
|
while again == 'y':
|
||||||
|
refresh()
|
||||||
|
zodiac_sign = int(input(
|
||||||
|
"Enter your Zodiac sign:\n\
|
||||||
|
[1] Aries\n[2] Taurus\n[3] Gemini\n[4] Cancer\n\
|
||||||
|
[5] Leo\n[6] Virgo\n[7] Libra\n[8] Scorpio\n\
|
||||||
|
[9] Sagittarius\n[10] Capricorn\n[11] Aquarius\n[12] Pisces\n> "
|
||||||
|
))
|
||||||
|
refresh()
|
||||||
|
print("Choose Day:\n[1] Yesterday\t[2] Today\t[3] Tomorrow:\n> ")
|
||||||
|
day = int(str(msvcrt.getch())[2])
|
||||||
|
refresh()
|
||||||
|
print("Horoscope Reading\n---------------------------------------------\n")
|
||||||
|
result = read_horoscope(zodiac_sign, day)
|
||||||
|
print(result)
|
||||||
|
print('\nDo you want to read horoscope again [y/n] > ')
|
||||||
|
again = str(msvcrt.getch())[2].lower()
|
Loading…
Reference in New Issue
Block a user