From 8d631d2e63795a877abb8bdef3ea4a07fe0e410d Mon Sep 17 00:00:00 2001 From: samartse Date: Mon, 11 Sep 2023 15:04:50 +0200 Subject: [PATCH] removed api.py file, not needed at the moment --- pymepix/api/api.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 pymepix/api/api.py diff --git a/pymepix/api/api.py b/pymepix/api/api.py deleted file mode 100644 index 1ac9b2d..0000000 --- a/pymepix/api/api.py +++ /dev/null @@ -1,19 +0,0 @@ -import argparse -import logging -import os -import time - -import pymepix.config.load_config as cfg -from pymepix.post_processing import run_post_processing -from pymepix.pymepix_connection import PymepixConnection - - -from tornado.web import Application, RequestHandler -import json - -logging.basicConfig( - level=logging.INFO, - format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", -) - -