10 lines
194 B
Python
10 lines
194 B
Python
#!/usr/bin/python3
|
|
|
|
from Muell import Muell
|
|
|
|
if __name__ == '__main__':
|
|
muell = Muell()
|
|
ausgabe = muell.get_data()
|
|
muell.ausgabe_telegram(ausgabe)
|
|
muell.ausgabe_signal(ausgabe)
|