summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2025-01-04 02:45:08 +0100
committererdgeist <erdgeist@erdgeist.org>2025-01-04 02:45:08 +0100
commitab32e563be8d99010245fc546817c5a2526d7b09 (patch)
treee0d08b09a2762b766e9b5415655c5bbfac16d21e
parentb2a7480d583198e250f5400db0e4b5f3543220d4 (diff)
Add missing imports
-rw-r--r--fullnarp.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/fullnarp.py b/fullnarp.py
index 7c98785..6a02b6e 100644
--- a/fullnarp.py
+++ b/fullnarp.py
@@ -1,9 +1,15 @@
1import asyncio 1from os import listdir
2from argparse import ArgumentParser
2import json 3import json
4import asyncio
5
3import websockets 6import websockets
4from os import listdir
5from websockets.exceptions import ConnectionClosedOK 7from websockets.exceptions import ConnectionClosedOK
6 8
9from sqlalchemy import Column, String, create_engine
10from sqlalchemy.orm import sessionmaker, declarative_base
11
12
7""" 13"""
8This is best served by an nginx block that should look a bit like this: 14This is best served by an nginx block that should look a bit like this:
9 15