blob: 2b253facfc981223a352272780eb656b7a247e9e (
plain)
1
2
3
4
5
6
7
8
9
|
from ausbutler.config import load_config
from ausbutler.interface import Interface
from ausbutler.goniec import Goniec
i = Interface(load_config('butler'))
i.calculate_all()
files = i.generate_all()
g = Goniec(load_config('goniec'))
g.send(files)
|