Skip to content

Instantly share code, notes, and snippets.

@MarcoBuster
Last active May 4, 2020 15:22
Show Gist options
  • Save MarcoBuster/ca2e6bb665330ef0ce07a666177bb71a to your computer and use it in GitHub Desktop.
Save MarcoBuster/ca2e6bb665330ef0ce07a666177bb71a to your computer and use it in GitHub Desktop.
Script per inviare una notifica su Telegram quando vengono pubblicate delle nuove date per gli esami TOLC CISIA
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
# of the public at large and to the detriment of our heirs and
# successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this
# software under copyright law.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# For more information, please refer to <http://unlicense.org>
import botogram
from bs4 import BeautifulSoup
BASE_URL = "https://tolc.cisiaonline.it/calendario.php?tolc=scienze" # The dates page URL
BOT_TOKEN = "" # Telegram bot token
LATEST_FILE = "latest.html"
IDS = [...] # Telegram destination IDs (you and your friends)
bot = botogram.create(BOT_TOKEN)
def req():
soup = bs4.BeautifulSoup(requests.get(BASE_URL).text, "html.parser")
calendar = soup.find("table", {"id": "calendario"})
rows = calendar.findAll("tr")
return str(len(rows))
def read_file():
with open(LATEST_FILE, "r+") as f:
return f.read()
def write_file(contents):
with open(LATEST_FILE, "w+") as f:
f.write(contents)
def main():
latest = read_file()
current = req()
if latest != current:
for c in IDS:
bot.chat(c).send("<b>Sono state aggiunte nuove date TOLC sul sito CISIA!</b>")
write_file(current)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment