Last active
July 6, 2021 12:14
-
-
Save codemation/a927af643946f609b4c328e0101cfa0c to your computer and use it in GitHub Desktop.
monitor body
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scheduler = EasyScheduler() | |
server = FastAPI() | |
every_minute = '* * * * *' | |
@server.on_event('startup') | |
async def setup(): | |
asyncio.create_task(scheduler.start()) | |
server.charts = await ChartServer.create( | |
server, | |
charts_db="charts_database", | |
chart_prefix = '/mycharts' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment