Skip to main content

Logger from python to HTML

Project description

web_logger

Get your log through the web. Why having a web logger rather than a native interface?

  • Remote access (although it works perfectly locally)
  • UI customization (if you are comfortable with CSS)

This application was built to run smoothly on a Raspberry Pi, however it has been designed on a platform agnostic way.

Getting started

You need Python 3.7+ to run this package.

python3 -m pip install websockets

Browser support

A banner pops in on browsers which don't support the needed feature. Also, it has been developed for those browsers:

  • Chrome 67+
  • Firefox 98+
  • Safari 15.4+

Please specify your browser path to the API.

from web_logger import Logger, LoggerException

def demo(logger):
    logger.log("Logger ready")

Logger("/path/to/browser", onReady=demo)

Note: Currently the python script needs to run on the www directory containing the interface files. However it is enough for the purpose of my projects so I don't plan to fix this. If this behavior upsets you, you are very welcome to submit a fix.

To customize the interface, you can copy all the files in another directory specific to your project, you can do versioning on this folder and use this folder as the working directory.

API

Please see the demo.py file to see an example.

logger = Logger(
        browser_path, # if None or none provided, Logger will start in remote mode
        http_port=3000, # TCP port to use for the HTTP server
        ws_port=3001, # TCP port to use for the WebSocket server
        onReady=lambda _: None, # callback for when logger is ready
    )
# the Logger constructor will block the thread until logger.stop is called
# or the browser is closed if run in local mode

# All methods should be called after the onReady callback has been called
try:
    logger.defineNewMenu(menu) # defines the menu items and action to be displayed on top of the logger
    logger.printMessage(message) # logs a message on the HTML interface
    logger.printMessage(message, audioFile="/audio.mp3") # logs a message on the HTML interface and play the audio
except LoggerException:
    print("Logger was not ready or has already terminated")
    pass
Audio files

You have the ability to play audio sound on the interface by specifying a audioFile argument. Check what are the supported audio formats for the browser you want to use.

N.B.: The path to audio file will be sent to the browser and therefore need to be relative to the root of the HTTP server. The root of the HTTP server can be set by changing the current directory. Because of HTTP specification, you cannot access the parent directory of the HTTP root folder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

web_logger-0.6.0.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

web_logger-0.6.0-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file web_logger-0.6.0.tar.gz.

File metadata

  • Download URL: web_logger-0.6.0.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for web_logger-0.6.0.tar.gz
Algorithm Hash digest
SHA256 6c7c0eccb359442de2f2fac9d9dbafa0880e2cd271d9648f1e2eba1dec9e9be6
MD5 1c5d0f86d96f6b2fb04e72318a7a1f9b
BLAKE2b-256 3d902efda077ba678887c7dd8a24e9bd2f84066484245c7fae0efc72eb132746

See more details on using hashes here.

File details

Details for the file web_logger-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: web_logger-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for web_logger-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a412134c2dda7f3073cffb21da440ffb7524cb933a0869a2c5bbc71ea570d735
MD5 628f8de90d46c91590896a555c99079c
BLAKE2b-256 54278013fb3331437ca16541067c3a195d09a06d89f8d62ec20de66a106ad58e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page