Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aduh95/web_logger
Python logger through a web interface
https://github.com/aduh95/web_logger
Last synced: about 1 month ago
JSON representation
Python logger through a web interface
- Host: GitHub
- URL: https://github.com/aduh95/web_logger
- Owner: aduh95
- License: other
- Created: 2018-10-23T08:40:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-26T10:33:08.000Z (over 2 years ago)
- Last Synced: 2024-10-09T18:41:20.458Z (about 1 month ago)
- Language: Python
- Size: 1.2 MB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.
```sh
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.
```python
from web_logger import Logger, LoggerExceptiondef 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.
```python
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.