Julian-456 commited on
Commit
beb130d
1 Parent(s): c6f5278

Update landing.py

Browse files

Telebot starten mit Aufruf der Landing-Page

Files changed (1) hide show
  1. landing.py +4 -0
landing.py CHANGED
@@ -4,6 +4,7 @@ from datetime import datetime
4
  import pandas as pd
5
  from pathlib import Path
6
  import os
 
7
 
8
  #os.environ['SENTENCE_TRANSFORMERS_HOME'] = './.cache' -- Löschen
9
 
@@ -19,6 +20,9 @@ st.sidebar.markdown("# Startseite")
19
  # HEADER
20
  header = st.title("Dateiupload für Behörden und Organisationen mit Sicherheitsaufgaben")
21
 
 
 
 
22
 
23
 
24
 
 
4
  import pandas as pd
5
  from pathlib import Path
6
  import os
7
+ from pages.telegram import *
8
 
9
  #os.environ['SENTENCE_TRANSFORMERS_HOME'] = './.cache' -- Löschen
10
 
 
20
  # HEADER
21
  header = st.title("Dateiupload für Behörden und Organisationen mit Sicherheitsaufgaben")
22
 
23
+ # Telebot starten
24
+ telegram = Telegram()
25
+
26
 
27
 
28