started ns_api

This commit is contained in:
Jonathan Herrewijnen 2023-10-23 22:28:20 +02:00
parent 958df44d33
commit 974f184ab2
5 changed files with 23 additions and 1 deletions

1
debug.py Normal file
View File

@ -0,0 +1 @@
import herrewebpy

View File

@ -1 +1,13 @@
from . import * from . import *
import logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s',
handlers=[
#logging.FileHandler('.log'), # Log file handler
logging.StreamHandler() # Console handler
]
)
logger = logging.getLogger(__name__)

View File

@ -0,0 +1,4 @@
{
"primary_key":"3cbf5edc7d644168990bed1d473b279d",
"secondary_key":"2658a3e62b124433989c2f389a3230d9"
}

View File

@ -0,0 +1 @@
from . import *

View File

@ -0,0 +1,4 @@
import requests
from herrewebpy import logger
logger.info(f'Running here')