Python ###### flake8 ====== Tool For Style Guide Enforcement: * https://flake8.pycqa.org/en/latest/index.html .. code-block:: bash flake8 --ignore=E501 Usefull Libraries ================= Computer Vision: https://github.com/facebookresearch/detectron2?tab=readme-ov-file Database/MySQL ============== .. code-block:: python mydb = mysql.connector.connect( host="", user="", password="", database="" ) cursor = mydb.cursor(buffered=True,dictionary=True) query = ("SELECT * FROM WHERE ;") cursor.execute(query) for entry in cursor_cleanup: print(entry) print(entry['']) # Do your Stuff here cursor.close() # TRUNCAT
cursor_truncate = mydb.cursor(buffered=True,dictionary=True) query = ("TRUNCATE
") cursor_truncate.execute(query) mydb.commit() cursor_truncate.close() # Clean entrys older a week cursor_cleanup = mydb.cursor(buffered=True,dictionary=True) query = ("DELETE FROM
WHERE time_of_entry < NOW() - INTERVAL 1 WEEK") cursor_cleanup.execute(query) mydb.commit() cursor_cleanup.close() insert_cursor = mydb.cursor(buffered=True,dictionary=True) sql = """ INSERT INTO
( , , , ) VALUES (%s, %s, %s, %s) """ val = [ ( , "TEST123", , 0 ) ] insert_cursor.executemany(sql, val) mydb.commit() insert_cursor.close() mydb.close() ASGI web server =============== * https://www.uvicorn.org/ .. code-block:: bash pip install uvicorn Logging ======= .. code-block:: python import logging from datetime import datetime import traceback # Setup Logging logging.basicConfig( level=logging.DEBUG, # level=logging.INFO, format="%(asctime)s | %(name)s | [%(levelname)s] %(message)s", handlers=[ logging.FileHandler("/-_" + str(datetime.today().strftime('%Y-%m-%d')) + "_-_debug.log"), logging.StreamHandler(sys.stdout) ] ) # Set Log-Level for specific logger logging.getLogger('').setLevel(logging.ERROR) logging.getLogger('').setLevel(logging.WARNING) logging.getLogger('').setLevel(logging.INFO) logging.getLogger('').setLevel(logging.DEBUG) # Logg something try: # do stuff except Exception as e: logging.debug("There was an error: " + str(e)) logging.debug("Stacktrace: " + str(traceback.format_exc())) Show all available logger dictionarys ------------------------------------- .. code-block:: python # Get the logger dictionary logger_dict = logging.root.manager.loggerDict # Print all available loggers for logger_name in logger_dict: print(logger_name) Set Log-Level of specific logger dictionarys -------------------------------------------- .. code-block:: python logging.getLogger('requests').setLevel(logging.CRITICAL) logging.getLogger('fontTools').setLevel(logging.CRITICAL) logging.getLogger('weasyprint').setLevel(logging.ERROR) Format Output ============= .. code-block:: python print('{} | {1:<8}'.format('Fruit', 'Quantity')) print('{} | {1:^8}'.format('Banana', '3')) print('{} | {1:>8}'.format('Apple', '2')) Testing ======= * https://fastapi.tiangolo.com/tutorial/testing/ (FastAPI) * https://pytest-with-eric.com/pytest-advanced/pytest-fastapi-testing/ (pytest)