mirror of
https://github.com/assenzostefano/class-website.git
synced 2025-06-06 00:39:12 +02:00
Compare commits
21 Commits
d6668d255d
...
dev
Author | SHA1 | Date | |
---|---|---|---|
583487d204 | |||
|
9bbe459585 | ||
|
62b9c93a2c | ||
|
815f3fc0d6 | ||
|
34d18eb4ed | ||
|
7fdc771d52 | ||
|
efa9348cfd | ||
|
660dfa283a | ||
|
fb2df8c658 | ||
|
792be8591b | ||
|
f336cffa60 | ||
|
2b7665f8ad | ||
|
4e0e1c545f | ||
|
9894a6957c | ||
|
f7f9181c6c | ||
|
0e77be9e07 | ||
|
c9e971c6bf | ||
|
03dc72fdc6 | ||
|
d8db86a33d | ||
|
f19d664646 | ||
|
2c78f7ed1e |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,4 +6,5 @@ __pycache__
|
|||||||
test.py
|
test.py
|
||||||
school_time.xlsx
|
school_time.xlsx
|
||||||
venv
|
venv
|
||||||
screenshot.png
|
screenshot.png
|
||||||
|
Dockerfile
|
7
app.py
7
app.py
@@ -1,6 +1,9 @@
|
|||||||
|
#import src.bot.discord.discord_bot
|
||||||
|
|
||||||
from flask import Flask, render_template, url_for, request, redirect, session
|
from flask import Flask, render_template, url_for, request, redirect, session
|
||||||
from pymongo import MongoClient
|
from pymongo import MongoClient
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
import threading
|
||||||
import logging
|
import logging
|
||||||
import urllib
|
import urllib
|
||||||
import bcrypt
|
import bcrypt
|
||||||
@@ -136,6 +139,10 @@ def logout():
|
|||||||
else:
|
else:
|
||||||
return render_template('index.html')
|
return render_template('index.html')
|
||||||
|
|
||||||
|
# Threading discord_bot.py
|
||||||
|
#import src.events.school_time.email_read # Start email_read.py
|
||||||
|
#x = threading.Thread(target=os.system('python src/bot/discord/discord_bot.py')).start()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
logging.info("Web server started!")
|
logging.info("Web server started!")
|
||||||
app.run(port=4999, debug=True)
|
app.run(port=4999, debug=True)
|
@@ -1,4 +1,4 @@
|
|||||||
from commands.moderation import ban, kick, clear_msg
|
#from commands.moderation import ban, kick, clear_msg
|
||||||
from discord.commands.context import ApplicationContext # Discord
|
from discord.commands.context import ApplicationContext # Discord
|
||||||
from selenium.webdriver.firefox.options import Options # Selenium
|
from selenium.webdriver.firefox.options import Options # Selenium
|
||||||
from discord.commands import Option # Discord
|
from discord.commands import Option # Discord
|
||||||
@@ -44,18 +44,19 @@ bot = discord.Bot()
|
|||||||
async def on_ready():
|
async def on_ready():
|
||||||
print('We have logged in as {0.user}'.format(bot))
|
print('We have logged in as {0.user}'.format(bot))
|
||||||
bot.loop.create_task(orario())
|
bot.loop.create_task(orario())
|
||||||
|
orario.start()
|
||||||
|
|
||||||
# Search on MongoDB the subject and send a message on Discord if the subject is found
|
# Search on MongoDB the subject and send a message on Discord if the subject is found
|
||||||
@tasks.loop(seconds=1)
|
@tasks.loop(seconds=10)
|
||||||
async def orario():
|
async def orario():
|
||||||
documents = collection.find()
|
documents = collection.find()
|
||||||
send_screenshot = 0
|
send_screenshot = 0
|
||||||
|
print("Searching for subject...")
|
||||||
# Iterate through the documents
|
# Iterate through the documents
|
||||||
for document in documents:
|
for document in documents:
|
||||||
for day in document['School Subject']:
|
for day in document['School Subject']:
|
||||||
for i, subject in enumerate(document['School Subject'][day]):
|
for i, subject in enumerate(document['School Subject'][day]):
|
||||||
if subject['Subject'] == "CALF1 LINGUA ITALIANA":
|
if subject['Subject'] == "LINGUA ITALIANA" or "ITALIANA":
|
||||||
# Send a message on channel #general with the subject found and the index of the subject
|
# Send a message on channel #general with the subject found and the index of the subject
|
||||||
options = Options() # Set options
|
options = Options() # Set options
|
||||||
options.add_argument("--headless") # Headless mode (so you don't see the browser)
|
options.add_argument("--headless") # Headless mode (so you don't see the browser)
|
||||||
@@ -64,17 +65,31 @@ async def orario():
|
|||||||
driver = webdriver.Firefox(options=options)
|
driver = webdriver.Firefox(options=options)
|
||||||
driver.get('http://127.0.0.1:4999/orario')
|
driver.get('http://127.0.0.1:4999/orario')
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
|
|
||||||
driver.get_screenshot_as_file("screenshot.png")
|
driver.get_screenshot_as_file("screenshot.png")
|
||||||
driver.quit()
|
driver.quit()
|
||||||
channel = bot.get_channel(GENERAL_ID)
|
channel = bot.get_channel(int(GENERAL_ID))
|
||||||
await channel.send(file=discord.File("screenshot.png"))
|
await channel.send(file=discord.File("screenshot.png"))
|
||||||
os.remove("screenshot.png")
|
os.remove("screenshot.png")
|
||||||
send_screenshot += 1
|
send_screenshot += 1
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
channel = bot.get_channel(GENERAL_ID)
|
if i == 0:
|
||||||
await channel.send(f"Day: {day}, Hour school: {i}, Subject found: {subject['Subject']} at index: {i}")
|
i = "First hour"
|
||||||
|
elif i == 1:
|
||||||
|
i = "Second hour"
|
||||||
|
elif i == 2:
|
||||||
|
i = "Third hour"
|
||||||
|
elif i == 3:
|
||||||
|
i = "Fourth hour"
|
||||||
|
elif i == 4:
|
||||||
|
i = "Fifth hour"
|
||||||
|
elif i == 5:
|
||||||
|
i = "Sixth hour"
|
||||||
|
elif i == 6:
|
||||||
|
i = "Seventh hour"
|
||||||
|
elif i == 7:
|
||||||
|
i = "Eighth hour"
|
||||||
|
await channel.send(f"Day: {day}, Hour school: {i}, Subject found: {subject['Subject']}")
|
||||||
send_screenshot = 0
|
send_screenshot = 0
|
||||||
|
|
||||||
|
|
||||||
@@ -90,10 +105,18 @@ async def change_school_time(
|
|||||||
"Select hour school",
|
"Select hour school",
|
||||||
choices=["First hour", "Second hour", "Third hour", "Fourth hour", "Fifth hour", "Sixth hour", "Seventh hour", "Eighth hour", "Ninth hour"],
|
choices=["First hour", "Second hour", "Third hour", "Fourth hour", "Fifth hour", "Sixth hour", "Seventh hour", "Eighth hour", "Ninth hour"],
|
||||||
required=True,
|
required=True,
|
||||||
), text: str
|
), text: str,
|
||||||
|
teacher: Option(str,
|
||||||
|
"Write teacher",
|
||||||
|
required=False,
|
||||||
|
),
|
||||||
|
room: Option(str,
|
||||||
|
"Write room school",
|
||||||
|
required=False,
|
||||||
|
),
|
||||||
):
|
):
|
||||||
|
|
||||||
await ctx.respond(f"Day selected: {day}, Hour school selected: {hour_school}, Text: {text}")
|
await ctx.respond(f"Day selected: {day}, Hour school selected: {hour_school}, Text: {text}, Teacher: {teacher} ,Room: {room}")
|
||||||
# Update the subject on MongoDB
|
# Update the subject on MongoDB
|
||||||
if hour_school == "First hour":
|
if hour_school == "First hour":
|
||||||
hour_school = "0"
|
hour_school = "0"
|
||||||
@@ -121,10 +144,32 @@ async def change_school_time(
|
|||||||
{"$set": {f"School Subject.{day}.{int(hour_school)}.Subject": text}}
|
{"$set": {f"School Subject.{day}.{int(hour_school)}.Subject": text}}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if teacher != None:
|
||||||
|
collection.update_one(
|
||||||
|
{"_id": ObjectId(array_document)},
|
||||||
|
{"$set": {f"School Subject.{day}.{int(hour_school)}.Teacher": teacher}}
|
||||||
|
)
|
||||||
|
|
||||||
|
if room != None:
|
||||||
|
collection.update_one(
|
||||||
|
{"_id": ObjectId(array_document)},
|
||||||
|
{"$set": {f"School Subject.{day}.{int(hour_school)}.Room": room}}
|
||||||
|
)
|
||||||
|
|
||||||
@bot.slash_command(name='confirm', description='Confirm change school time')
|
@bot.slash_command(name='confirm', description='Confirm change school time')
|
||||||
async def confirm(ctx : ApplicationContext):
|
async def confirm(ctx : ApplicationContext):
|
||||||
await ctx.respond(f"Confirm")
|
await ctx.respond(f"Confirm")
|
||||||
collection_email.update_one({}, {"$set": {"Send on Whatsapp": "yes"}})
|
options = Options() # Set options
|
||||||
|
options.add_argument("--headless") # Headless mode (so you don't see the browser)
|
||||||
|
options.add_argument('--disable-gpu') # Disable GPU
|
||||||
|
driver = webdriver.Firefox(options=options)
|
||||||
|
driver.get('http://127.0.0.1:4999/orario')
|
||||||
|
driver.get_screenshot_as_file("screenshot.png")
|
||||||
|
driver.quit()
|
||||||
|
channel = bot.get_channel(int(GENERAL_ID))
|
||||||
|
await channel.send(file=discord.File("screenshot.png"))
|
||||||
|
os.remove("screenshot.png")
|
||||||
|
|
||||||
#@bot.slash_command()
|
#@bot.slash_command()
|
||||||
#@discord.default_permissions(ban_members = True, administrator = True)
|
#@discord.default_permissions(ban_members = True, administrator = True)
|
||||||
#async def ban(ctx, member: Option(discord.Member, description="Select a member", required=True), reason: Option(str, description="Reason", required=True)):
|
#async def ban(ctx, member: Option(discord.Member, description="Select a member", required=True), reason: Option(str, description="Reason", required=True)):
|
||||||
@@ -141,4 +186,6 @@ async def confirm(ctx : ApplicationContext):
|
|||||||
#async def clear(ctx, messages: Option(int, description="Amount of messages to delete", required=True)):
|
#async def clear(ctx, messages: Option(int, description="Amount of messages to delete", required=True)):
|
||||||
# clear_msg.clear_messages(ctx, amount = messages)
|
# clear_msg.clear_messages(ctx, amount = messages)
|
||||||
|
|
||||||
bot.run(DISCORD_TOKEN)
|
while True:
|
||||||
|
bot.run(DISCORD_TOKEN)
|
||||||
|
orario.start()
|
@@ -1,12 +1,14 @@
|
|||||||
from bson.objectid import ObjectId
|
from bson.objectid import ObjectId
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
from telebot import telebot
|
from telebot import telebot
|
||||||
import threading
|
import time
|
||||||
import datetime
|
import datetime
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
import schedule
|
import schedule
|
||||||
import pymongo
|
import pymongo
|
||||||
import urllib
|
import urllib
|
||||||
import time
|
import pytz
|
||||||
import os
|
import os
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
@@ -38,10 +40,6 @@ def subscribe(message):
|
|||||||
)
|
)
|
||||||
bot.send_message(message.chat.id, "You are subscribed")
|
bot.send_message(message.chat.id, "You are subscribed")
|
||||||
|
|
||||||
def recheck():
|
|
||||||
time.sleep(60)
|
|
||||||
send_notification()
|
|
||||||
|
|
||||||
def send_notification():
|
def send_notification():
|
||||||
today = datetime.datetime.today().strftime('%A')
|
today = datetime.datetime.today().strftime('%A')
|
||||||
tomorrow = (datetime.datetime.today() + datetime.timedelta(days=1)).strftime('%A')
|
tomorrow = (datetime.datetime.today() + datetime.timedelta(days=1)).strftime('%A')
|
||||||
@@ -49,7 +47,7 @@ def send_notification():
|
|||||||
if today == "Saturday" or today == "Sunday":
|
if today == "Saturday" or today == "Sunday":
|
||||||
print("Today is weekend")
|
print("Today is weekend")
|
||||||
else:
|
else:
|
||||||
# Alla prima ora (7.50) manda una notifica a tutti gli utenti che hanno scritto /subscribe della materia della prima ora e così via
|
# Alla prima ora (7.50) manda una notifica a tutti gli utenti che hanno scritto /subscribe della materia della prima ora
|
||||||
find_document = list(collection_schooltime.find({}, {"_id": 0, "School Subject": 1}))
|
find_document = list(collection_schooltime.find({}, {"_id": 0, "School Subject": 1}))
|
||||||
collection_find_username = list(collection.find({}, {"username": 1,})) #Find all username in collection
|
collection_find_username = list(collection.find({}, {"username": 1,})) #Find all username in collection
|
||||||
array_username = collection_find_username[0]["username"] #Array with all username
|
array_username = collection_find_username[0]["username"] #Array with all username
|
||||||
@@ -58,46 +56,53 @@ def send_notification():
|
|||||||
if now.strftime("%H:%M") == "07:50":
|
if now.strftime("%H:%M") == "07:50":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][0]['Room']) + ", " + i['School Subject'][today][0]['Teacher'] + ", " + i['School Subject'][today][0]['Subject'] + "\n" + "Successiva: " + str(i['School Subject'][today][1]['Room']) + ", " + i['School Subject'][today][1]['Teacher'] + ", " + i['School Subject'][today][1]['Subject'])
|
bot.send_message(b, str(i['School Subject'][today][0]['Room']) + ", " + i['School Subject'][today][0]['Teacher'] + ", " + i['School Subject'][today][0]['Subject'] + "\n" + "Successiva: " + str(i['School Subject'][today][1]['Room']) + ", " + i['School Subject'][today][1]['Teacher'] + ", " + i['School Subject'][today][1]['Subject'])
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "08:50":
|
elif now.strftime("%H:%M") == "08:50":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][1]['Room']) + ", " + i['School Subject'][today][1]['Teacher'] + ", " + str(i['School Subject'][today][1]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][2]['Room']) + ", " + i['School Subject'][today][2]['Teacher'] + ", " + i['School Subject'][today][2]['Subject'])
|
bot.send_message(b, str(i['School Subject'][today][1]['Room']) + ", " + i['School Subject'][today][1]['Teacher'] + ", " + str(i['School Subject'][today][1]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][2]['Room']) + ", " + i['School Subject'][today][2]['Teacher'] + ", " + i['School Subject'][today][2]['Subject'])
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "09:50":
|
elif now.strftime("%H:%M") == "09:50":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][2]['Room']) + ", " + i['School Subject'][today][2]['Teacher'] + ", " + str(i['School Subject'][today][2]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][3]['Room']) + ", " + i['School Subject'][today][3]['Teacher'] + ", " + i['School Subject'][today][3]['Subject'])
|
bot.send_message(b, str(i['School Subject'][today][2]['Room']) + ", " + i['School Subject'][today][2]['Teacher'] + ", " + str(i['School Subject'][today][2]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][3]['Room']) + ", " + i['School Subject'][today][3]['Teacher'] + ", " + i['School Subject'][today][3]['Subject'])
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "11:05":
|
elif now.strftime("%H:%M") == "11:05":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][3]['Room']) + ", " + i['School Subject'][today][3]['Teacher'] + ", " + str(i['School Subject'][today][3]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][4]['Room']) + ", " + i['School Subject'][today][4]['Teacher'] + ", " + i['School Subject'][today][4]['Subject'])
|
bot.send_message(b, str(i['School Subject'][today][3]['Room']) + ", " + i['School Subject'][today][3]['Teacher'] + ", " + str(i['School Subject'][today][3]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][4]['Room']) + ", " + i['School Subject'][today][4]['Teacher'] + ", " + i['School Subject'][today][4]['Subject'])
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "12:05":
|
elif now.strftime("%H:%M") == "12:05":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][4]['Room']) + ", " + i['School Subject'][today][4]['Teacher'] + ", " + str(i['School Subject'][today][4]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][5]['Room']) + ", " + i['School Subject'][today][5]['Teacher'] + ", " + i['School Subject'][today][5]['Subject'])
|
bot.send_message(b, str(i['School Subject'][today][4]['Room']) + ", " + i['School Subject'][today][4]['Teacher'] + ", " + str(i['School Subject'][today][4]['Subject']) + "\n" + "Successiva: " + str(i['School Subject'][today][5]['Room']) + ", " + i['School Subject'][today][5]['Teacher'] + ", " + i['School Subject'][today][5]['Subject'])
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "13:05":
|
elif now.strftime("%H:%M") == "13:05":
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, str(i['School Subject'][today][5]['Room']) + ", " + i['School Subject'][today][5]['Teacher'] + ", " + str(i['School Subject'][today][5]['Subject']))
|
bot.send_message(b, str(i['School Subject'][today][5]['Room']) + ", " + i['School Subject'][today][5]['Teacher'] + ", " + str(i['School Subject'][today][5]['Subject']))
|
||||||
recheck()
|
|
||||||
elif now.strftime("%H:%M") == "21:00":
|
elif now.strftime("%H:%M") == "21:00":
|
||||||
if tomorrow == "Sunday" or tomorrow == "Saturday":
|
if tomorrow == "Sunday" or tomorrow == "Saturday":
|
||||||
print("Nope")
|
if tomorrow == "Monday":
|
||||||
|
for i in find_document:
|
||||||
|
for b in array_username:
|
||||||
|
bot.send_message(b, i['School Subject'][tomorrow][0]['Subject'] + ", " + i['School Subject'][tomorrow][0]['Teacher'] + "\n" + i['School Subject'][tomorrow][1]['Subject'] + ", " + i['School Subject'][tomorrow][1]['Teacher'] + "\n" + i['School Subject'][tomorrow][2]['Subject'] + ", " + i['School Subject'][tomorrow][2]['Teacher'] + "\n" + i['School Subject'][tomorrow][3]['Subject'] + ", " + i['School Subject'][tomorrow][3]['Teacher'] + "\n" + i['School Subject'][tomorrow][4]['Subject'] + ", " + i['School Subject'][tomorrow][4]['Teacher'] + "\n" + i['School Subject'][tomorrow][5]['Subject'] + ", " + i['School Subject'][tomorrow][5]['Teacher'])
|
||||||
else:
|
else:
|
||||||
for i in find_document:
|
for i in find_document:
|
||||||
for b in array_username:
|
for b in array_username:
|
||||||
bot.send_message(b, i['School Subject'][tomorrow][0]['Subject'] + ", " + i['School Subject'][tomorrow][0]['Teacher'] + "\n" + i['School Subject'][tomorrow][1]['Subject'] + ", " + i['School Subject'][tomorrow][1]['Teacher'] + "\n" + i['School Subject'][tomorrow][2]['Subject'] + ", " + i['School Subject'][tomorrow][2]['Teacher'] + "\n" + i['School Subject'][tomorrow][3]['Subject'] + ", " + i['School Subject'][tomorrow][3]['Teacher'] + "\n" + i['School Subject'][tomorrow][4]['Subject'] + ", " + i['School Subject'][tomorrow][4]['Teacher'] + "\n" + i['School Subject'][tomorrow][5]['Subject'] + ", " + i['School Subject'][tomorrow][5]['Teacher'])
|
bot.send_message(b, i['School Subject'][tomorrow][0]['Subject'] + ", " + i['School Subject'][tomorrow][0]['Teacher'] + "\n" + i['School Subject'][tomorrow][1]['Subject'] + ", " + i['School Subject'][tomorrow][1]['Teacher'] + "\n" + i['School Subject'][tomorrow][2]['Subject'] + ", " + i['School Subject'][tomorrow][2]['Teacher'] + "\n" + i['School Subject'][tomorrow][3]['Subject'] + ", " + i['School Subject'][tomorrow][3]['Teacher'] + "\n" + i['School Subject'][tomorrow][4]['Subject'] + ", " + i['School Subject'][tomorrow][4]['Teacher'] + "\n" + i['School Subject'][tomorrow][5]['Subject'] + ", " + i['School Subject'][tomorrow][5]['Teacher'])
|
||||||
else:
|
|
||||||
recheck()
|
def test_time():
|
||||||
|
print("Test")
|
||||||
|
|
||||||
schedule.every().day.at("07:50").do(send_notification)
|
schedule.every().day.at("07:50").do(send_notification)
|
||||||
|
schedule.every().day.at("08:50").do(send_notification)
|
||||||
|
schedule.every().day.at("09:50").do(send_notification)
|
||||||
|
schedule.every().day.at("11:05").do(send_notification)
|
||||||
|
schedule.every().day.at("12:05").do(send_notification)
|
||||||
|
schedule.every().day.at("13:05").do(send_notification)
|
||||||
|
schedule.every().day.at("21:05").do(send_notification)
|
||||||
|
tz = pytz.timezone("Europe/Rome")
|
||||||
now = datetime.datetime.now()
|
now = datetime.datetime.now()
|
||||||
t1 = threading.Thread(target=bot.polling).start()
|
t1 = threading.Thread(target=bot.polling).start()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
schedule.run_pending()
|
time.sleep(10)
|
||||||
|
print(now)
|
||||||
|
schedule.run_pending()
|
@@ -1,6 +1,13 @@
|
|||||||
|
pymongo==4.3.3
|
||||||
|
urllib3==1.26.13
|
||||||
|
python-dotenv==0.21.0
|
||||||
|
schedule==1.1.0
|
||||||
|
telebot==0.0.5
|
||||||
|
pybson==0.5.9
|
||||||
pybson==0.5.9
|
pybson==0.5.9
|
||||||
python-dotenv==0.21.0
|
python-dotenv==0.21.0
|
||||||
telebot==0.0.5
|
telebot==0.0.5
|
||||||
schedule==1.1.0
|
schedule==1.1.0
|
||||||
pymongo==4.3.3
|
pymongo==4.3.3
|
||||||
urllib3==1.26.13
|
urllib3==1.26.13
|
||||||
|
pytz==2022.6
|
@@ -1,62 +1,219 @@
|
|||||||
# Import file for check homework
|
import pymongo
|
||||||
from day_one import day_one
|
from selenium import webdriver
|
||||||
|
|
||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.webdriver.firefox.options import Options
|
from selenium.webdriver.firefox.options import Options
|
||||||
from selenium.webdriver.common.by import By
|
from selenium.webdriver.common.by import By
|
||||||
from selenium import webdriver
|
from selenium.webdriver.support.ui import WebDriverWait
|
||||||
|
from selenium.webdriver.support import expected_conditions as EC
|
||||||
# Libraries for MongoDB and .env file
|
|
||||||
from dotenv import load_dotenv
|
|
||||||
import urllib.parse
|
|
||||||
import datetime
|
import datetime
|
||||||
import pymongo
|
from dotenv import load_dotenv
|
||||||
import time
|
|
||||||
import os
|
import os
|
||||||
|
import urllib.parse
|
||||||
|
import time
|
||||||
|
|
||||||
|
# Disable GPU for Firefox
|
||||||
|
options = Options()
|
||||||
|
options.add_argument('--disable-gpu')
|
||||||
|
|
||||||
|
# Disable showing Firefox window
|
||||||
|
options.headless = True
|
||||||
|
|
||||||
#Load .env file
|
|
||||||
load_dotenv() #Load .env file
|
load_dotenv() #Load .env file
|
||||||
USERNAME = os.getenv('USERNAME_NUVOLA') #Username for Nuvola
|
USERNAME = os.getenv('USERNAME_NUVOLA') #Username for Nuvola
|
||||||
PASSWORD = os.getenv('PASSWORD_NUVOLA') #Password for Nuvola
|
PASSWORD = os.getenv('PASSWORD_NUVOLA') #Password for Nuvola
|
||||||
PASSWORD_MONGODB = os.getenv('PASSWORD_MONGODB') #Password for MongoDB
|
PASSWORD_MONGODB = os.getenv('PASSWORD_MONGODB') #Password for MongoDB
|
||||||
URL_MONGODB = os.getenv('URL_MONGODB') #URL for MongoDB
|
URL_MONGODB = os.getenv('URL_MONGODB') #URL for MongoDB
|
||||||
|
# Initialize the browser with the given options
|
||||||
|
browser = webdriver.Firefox(options=options)
|
||||||
|
|
||||||
|
# Wait for up to 10 seconds for elements to appear
|
||||||
|
wait = WebDriverWait(browser, 10)
|
||||||
|
|
||||||
|
# Connect to the MongoDB database
|
||||||
mongo_url = "mongodb+srv://elci:" + urllib.parse.quote_plus(PASSWORD_MONGODB) + URL_MONGODB #URL for MongoDB (with password)
|
mongo_url = "mongodb+srv://elci:" + urllib.parse.quote_plus(PASSWORD_MONGODB) + URL_MONGODB #URL for MongoDB (with password)
|
||||||
client = pymongo.MongoClient(mongo_url) #Connect to MongoDB
|
client = pymongo.MongoClient(mongo_url) #Connect to MongoDB
|
||||||
database = client["website-class"] #Database name
|
db = client["website-class"]
|
||||||
collection = database["homework"] #Collection school time table current
|
|
||||||
|
|
||||||
# Options for Firefox
|
# Get today's date as a string in the format "YYYY-MM-DD"
|
||||||
options = Options() # Set options
|
today = datetime.datetime.now().strftime("%Y-%m-%d")
|
||||||
options.add_argument("--headless") # Headless mode (so you don't see the browser)
|
|
||||||
options.add_argument('--disable-gpu') # Disable GPU
|
|
||||||
|
|
||||||
def start_search():
|
# Get the collection for today's data
|
||||||
#time.sleep(7200)
|
collection = db["homework"]
|
||||||
global driver
|
|
||||||
driver = webdriver.Firefox(options=options) # Open Firefox and set options
|
|
||||||
driver.get("https://nuvola.madisoft.it/login") # Open Nuvola website
|
|
||||||
username = WebDriverWait(driver, 100).until(EC.element_to_be_clickable((By.ID, "username"))) # Wait for the username input
|
|
||||||
password = WebDriverWait(driver, 100).until(EC.element_to_be_clickable((By.ID, "password"))) # Wait for the password input
|
|
||||||
|
|
||||||
username.click()
|
# Initialize the URL for Cloud
|
||||||
username.clear()
|
url = 'https://nuvola.madisoft.it/login'
|
||||||
username.send_keys(USERNAME) # Insert username
|
|
||||||
password.click()
|
|
||||||
password.clear()
|
|
||||||
password.send_keys(PASSWORD) # Insert password
|
|
||||||
WebDriverWait(driver, 50).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div[1]/div[2]/div/div[2]/form/button"))).click() # Click on login button
|
|
||||||
|
|
||||||
# Section Homework
|
browser.get(url)
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/div[1]/nav/div/div/a[6]"))).click() # Click on homework button
|
username = WebDriverWait(browser, 100).until(EC.element_to_be_clickable((By.ID, "username"))) # Wait for the username input
|
||||||
|
password = WebDriverWait(browser, 100).until(EC.element_to_be_clickable((By.ID, "password"))) # Wait for the password input
|
||||||
homework_check()
|
username.click()
|
||||||
|
username.clear()
|
||||||
|
username.send_keys(USERNAME) # Insert username
|
||||||
|
password.click()
|
||||||
|
password.clear()
|
||||||
|
password.send_keys(PASSWORD) # Insert password
|
||||||
|
WebDriverWait(browser, 50).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div[1]/div[2]/div/div[2]/form/button"))).click() # Click on login button
|
||||||
|
# Section Homework
|
||||||
|
WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/div[1]/nav/div/div/a[6]"))).click() # Click on homework button
|
||||||
|
|
||||||
def homework_check():
|
# Click on the "Next Day" button to go to the next day's tasks
|
||||||
day_one.giorno_uno(driver, collection)
|
next_day_button = WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]')))
|
||||||
driver.close()
|
|
||||||
print("Finish")
|
|
||||||
start_search()
|
|
||||||
|
|
||||||
start_search()
|
def wait_homework():
|
||||||
|
browser.quit()
|
||||||
|
time.sleep(10800)
|
||||||
|
check_homework()
|
||||||
|
|
||||||
|
def check_homework():
|
||||||
|
for i in range(0, 10):
|
||||||
|
try:
|
||||||
|
print(i)
|
||||||
|
date = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text)
|
||||||
|
subject = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/h2"))).text)
|
||||||
|
teacher = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/span"))).text)
|
||||||
|
text1 = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text)
|
||||||
|
print(date)
|
||||||
|
print(subject)
|
||||||
|
print(text1)
|
||||||
|
# Search on MongoDB if the date is already present on the database
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}}
|
||||||
|
)
|
||||||
|
|
||||||
|
subject = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text)
|
||||||
|
teacher = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/span"))).text)
|
||||||
|
text1 = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text)
|
||||||
|
print(subject)
|
||||||
|
print(teacher)
|
||||||
|
print(text1)
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}}
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
subject = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text)
|
||||||
|
teacher = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/span"))).text)
|
||||||
|
text1 = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text)
|
||||||
|
print(subject)
|
||||||
|
print(teacher)
|
||||||
|
print(text1)
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}}
|
||||||
|
)
|
||||||
|
except:
|
||||||
|
subject = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text)
|
||||||
|
teacher = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/span"))).text)
|
||||||
|
text1 = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text)
|
||||||
|
print(subject)
|
||||||
|
print(teacher)
|
||||||
|
print(text1)
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}}
|
||||||
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
subject = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text)
|
||||||
|
teacher = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/span"))).text)
|
||||||
|
text1 = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text)
|
||||||
|
print(subject)
|
||||||
|
print(teacher)
|
||||||
|
print(text1)
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework":
|
||||||
|
{
|
||||||
|
"Subject": subject,
|
||||||
|
"Description": text1,
|
||||||
|
"Teacher": teacher}
|
||||||
|
}}
|
||||||
|
)
|
||||||
|
WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]'))).click() # Click on next day button
|
||||||
|
except:
|
||||||
|
WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]'))).click()
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
date = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text)
|
||||||
|
text = str(WebDriverWait(browser, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text)
|
||||||
|
print(date)
|
||||||
|
print(text)
|
||||||
|
if collection.find_one({"Date": date}) is None:
|
||||||
|
collection.insert_one({"Date": date, "Homework": [text]})
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{"Date": date},
|
||||||
|
{"$addToSet": {"Homework": text}}
|
||||||
|
)
|
||||||
|
WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]'))).click() # Click on next day button
|
||||||
|
except:
|
||||||
|
WebDriverWait(browser, 250).until(EC.element_to_be_clickable((By.XPATH, '/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]'))).click() # Click on next day button
|
||||||
|
|
||||||
|
wait_homework()
|
||||||
|
|
||||||
|
check_homework()
|
@@ -1,304 +0,0 @@
|
|||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.common.exceptions import TimeoutException
|
|
||||||
from selenium.webdriver.common.by import By
|
|
||||||
|
|
||||||
def giorno_cinque(driver, collection):
|
|
||||||
#Giorno cinque
|
|
||||||
try:
|
|
||||||
date = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text) # Date
|
|
||||||
split_date = date.split() # Split date
|
|
||||||
description = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text) # Homework 1 or no homework
|
|
||||||
mydict = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": "No school subject",
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": "No school subject", "description": description }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li/h2"))).text) # School subject 1
|
|
||||||
new_school_subject = {"$set": {"name": school_subject}} # Update school subject
|
|
||||||
collection.update_one(mydict, new_school_subject) # Update school subject
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict1 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict1) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict2 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict2) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict3 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict3) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict4 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict4) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict5 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict5) # Insert data in MongoDB
|
|
||||||
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
except TimeoutException:
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/h2"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict6 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict6) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict7 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict7) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict8 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict8) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict9 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict9) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict10 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict10) # Insert data in MongoDB
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
@@ -1,308 +0,0 @@
|
|||||||
from day_five import day_five
|
|
||||||
|
|
||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.common.exceptions import TimeoutException
|
|
||||||
from selenium.webdriver.common.by import By
|
|
||||||
|
|
||||||
def giorno_quattro(driver, collection):
|
|
||||||
#Giorno quattro
|
|
||||||
try:
|
|
||||||
date = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text) # Date
|
|
||||||
split_date = date.split() # Split date
|
|
||||||
description = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text) # Homework 1 or no homework
|
|
||||||
mydict = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": "No school subject",
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": "No school subject", "description": description }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li/h2"))).text) # School subject 1
|
|
||||||
new_school_subject = {"$set": {"name": school_subject}} # Update school subject
|
|
||||||
collection.update_one(mydict, new_school_subject) # Update school subject
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict1 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict1) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict2 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict2) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict3 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict3) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict4 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict4) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict5 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict5) # Insert data in MongoDB
|
|
||||||
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_five.giorno_cinque(driver, collection)
|
|
||||||
except TimeoutException:
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/h2"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict6 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict6) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict7 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict7) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict8 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict8) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict9 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict9) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict10 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict10) # Insert data in MongoDB
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_five.giorno_cinque(driver, collection)
|
|
@@ -1,58 +0,0 @@
|
|||||||
from day_two import day_two
|
|
||||||
|
|
||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.common.exceptions import TimeoutException
|
|
||||||
from selenium.webdriver.common.by import By
|
|
||||||
|
|
||||||
def insert_homework_to_mongo(collection, school_subject, date, description):
|
|
||||||
# Check if homework already exists in the collection
|
|
||||||
if collection.find_one({"long_date": date, "name": school_subject, "description": description}):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
# Create dictionary for MongoDB document
|
|
||||||
mydict = {
|
|
||||||
"name": school_subject,
|
|
||||||
"date": {
|
|
||||||
"long_date": date,
|
|
||||||
"day": date.split()[0],
|
|
||||||
"month": date.split()[1],
|
|
||||||
"year": date.split()[2]
|
|
||||||
},
|
|
||||||
"description": description
|
|
||||||
}
|
|
||||||
# Insert document into MongoDB
|
|
||||||
x = collection.insert_one(mydict)
|
|
||||||
print("Homework inserted into database")
|
|
||||||
|
|
||||||
def giorno_uno(driver, collection):
|
|
||||||
#Giorno uno
|
|
||||||
try:
|
|
||||||
date = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text) # Date
|
|
||||||
split_date = date.split() # Split date
|
|
||||||
description = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text) # Homework 1 or no homework
|
|
||||||
|
|
||||||
# Insert homework for "No school subject"
|
|
||||||
insert_homework_to_mongo(collection, "No school subject", date, description)
|
|
||||||
|
|
||||||
# Loop through all school subjects and insert homework for each
|
|
||||||
school_subjects = driver.find_elements_by_xpath("/html/body/div/div/main/div/div[2]/div/ul/li")
|
|
||||||
for subject in school_subjects:
|
|
||||||
school_subject = str(subject.find_element_by_xpath("./h2").text)
|
|
||||||
homework = subject.find_element_by_xpath("./div/ul/li/p").text
|
|
||||||
|
|
||||||
# Insert homework for current school subject
|
|
||||||
insert_homework_to_mongo(collection, school_subject, date, homework)
|
|
||||||
|
|
||||||
try:
|
|
||||||
# Click on next day button
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click()
|
|
||||||
# Call giorno_due() function from day_two.py for next day
|
|
||||||
day_two.giorno_due(driver, collection)
|
|
||||||
except TimeoutException:
|
|
||||||
# No more days to scrape, end function
|
|
||||||
pass
|
|
||||||
|
|
||||||
except:
|
|
||||||
print("Error")
|
|
@@ -1,308 +0,0 @@
|
|||||||
from day_four import day_four
|
|
||||||
|
|
||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.common.exceptions import TimeoutException
|
|
||||||
from selenium.webdriver.common.by import By
|
|
||||||
|
|
||||||
def giorno_tre(driver, collection):
|
|
||||||
#Giorno tre
|
|
||||||
try:
|
|
||||||
date = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text) # Date
|
|
||||||
split_date = date.split() # Split date
|
|
||||||
description = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text) # Homework 1 or no homework
|
|
||||||
mydict = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": "No school subject",
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": "No school subject", "description": description }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li/h2"))).text) # School subject 1
|
|
||||||
new_school_subject = {"$set": {"name": school_subject}} # Update school subject
|
|
||||||
collection.update_one(mydict, new_school_subject) # Update school subject
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict1 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict1) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict2 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict2) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict3 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict3) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict4 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict4) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict5 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict5) # Insert data in MongoDB
|
|
||||||
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_four.giorno_quattro(driver, collection)
|
|
||||||
except TimeoutException:
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/h2"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict6 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict6) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict7 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict7) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict8 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict8) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict9 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict9) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict10 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict10) # Insert data in MongoDB
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_four.giorno_quattro(driver, collection)
|
|
@@ -1,308 +0,0 @@
|
|||||||
from day_three import day_three
|
|
||||||
|
|
||||||
# Libraries for open and use Firefox
|
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
|
||||||
from selenium.common.exceptions import TimeoutException
|
|
||||||
from selenium.webdriver.common.by import By
|
|
||||||
|
|
||||||
def giorno_due(driver, collection):
|
|
||||||
#Giorno due
|
|
||||||
try:
|
|
||||||
date = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[1]"))).text) # Date
|
|
||||||
split_date = date.split() # Split date
|
|
||||||
description = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/p"))).text) # Homework 1 or no homework
|
|
||||||
mydict = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": "No school subject",
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": "No school subject", "description": description }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li/h2"))).text) # School subject 1
|
|
||||||
new_school_subject = {"$set": {"name": school_subject}} # Update school subject
|
|
||||||
collection.update_one(mydict, new_school_subject) # Update school subject
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict1 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict1) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict2 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict2) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict3 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict3) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict4 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict4) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict5 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict5) # Insert data in MongoDB
|
|
||||||
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_three.giorno_tre(driver, collection)
|
|
||||||
except TimeoutException:
|
|
||||||
try:
|
|
||||||
school_subject_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/h2"))).text) # School subject 1
|
|
||||||
description_1 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[1]/div/ul/li/p"))).text) # Homework 1
|
|
||||||
mydict6 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_1,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_1,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_1, "description": description_1 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict6) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/h2"))).text) # School subject 2
|
|
||||||
description_2 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[2]/div/ul/li/p"))).text) # Homework 2
|
|
||||||
mydict7 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_2,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_2,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_2, "description": description_2 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict7) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/h2"))).text) # School subject 3
|
|
||||||
description_3 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[3]/div/ul/li/p"))).text) # Homework 3
|
|
||||||
mydict8 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_3,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_3,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_3, "description": description_3 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict8) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/h2"))).text) # School subject 4
|
|
||||||
description_4 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[4]/div/ul/li/p"))).text) # Homework 4
|
|
||||||
mydict9 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_4,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_4,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_4, "description": description_4 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict9) # Insert data in MongoDB
|
|
||||||
|
|
||||||
school_subject_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/h2"))).text) # School subject 5
|
|
||||||
description_5 = str(WebDriverWait(driver, 250).until(EC.visibility_of_element_located((By.XPATH, "/html/body/div/div/main/div/div[2]/div/ul/li[5]/div/ul/li/p"))).text) # Homework 5
|
|
||||||
mydict10 = {
|
|
||||||
"subjects": [
|
|
||||||
{
|
|
||||||
"name": school_subject_5,
|
|
||||||
"homework": [
|
|
||||||
{
|
|
||||||
"date": {
|
|
||||||
"long date": date,
|
|
||||||
"day": split_date[0],
|
|
||||||
"month": split_date[1],
|
|
||||||
"year": split_date[2],
|
|
||||||
},
|
|
||||||
"description": description_5,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
if collection.find({},{ "_id": 0, "long_date": date ,"name": school_subject_5, "description": description_5 }):
|
|
||||||
print("Homework already in database")
|
|
||||||
else:
|
|
||||||
x = collection.insert_many(mydict10) # Insert data in MongoDB
|
|
||||||
except TimeoutException:
|
|
||||||
WebDriverWait(driver, 250).until(EC.element_to_be_clickable((By.XPATH, "/html/body/div/div/main/div/div/div[1]/div[1]/div[1]/button[3]"))).click() # Click on next day button
|
|
||||||
day_three.giorno_tre(driver, collection)
|
|
@@ -826,5 +826,44 @@ def update_time_school():
|
|||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
|
#
|
||||||
|
docs = collection.find()
|
||||||
|
|
||||||
|
# Iterate over each document
|
||||||
|
for doc in docs:
|
||||||
|
# Access the ObjectId field of the document
|
||||||
|
doc_id = doc["_id"]
|
||||||
|
day = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday']
|
||||||
|
for i in range(0, 5):
|
||||||
|
pomate = doc["School Subject"][day[i]][0]['Subject']
|
||||||
|
try:
|
||||||
|
remove_things_in_front = pomate.split(' ', 1)[1]
|
||||||
|
if remove_things_in_front == "ITALIANA":
|
||||||
|
collection.update_one(
|
||||||
|
{ "_id": ObjectId(doc_id)},
|
||||||
|
{ "$set": {
|
||||||
|
"School Subject." + day[i] + ".0.Subject": "LINGUA ITALIANA",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
elif remove_things_in_front == "ELETTRICO":
|
||||||
|
collection.update_one(
|
||||||
|
{ "_id": ObjectId(doc_id)},
|
||||||
|
{ "$set": {
|
||||||
|
"School Subject." + day[i] + ".0.Subject": "LAB. ELETTRICO",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
collection.update_one(
|
||||||
|
{ "_id": ObjectId(doc_id)},
|
||||||
|
{ "$set": {
|
||||||
|
"School Subject." + day[i] + ".0.Subject": remove_things_in_front,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
update_time_school()
|
update_time_school()
|
Reference in New Issue
Block a user