Metadata-Version: 2.4
Name: webtimeline
Version: 0.0.3
Summary: Python Web served time graph
Keywords: chart,line,plot,graph,web,served,time
Author-email: Bernard Czenkusz <bernie@skipole.co.uk>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-Expression: Unlicense
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Office/Business
Classifier: Topic :: Education
License-File: LICENSE
Requires-Dist: litestar[standard]>=2.19.0
Requires-Dist: Mako>=1.3.10
Requires-Dist: minilineplot>=0.0.8
Project-URL: Source, https://github.com/bernie-skipole/webtimeline

# webtimeline

Python Web served time graph

This provides a class 'WebTimeLine' which generates a web server, serving a page with a lineplot.

A coroutine method of the class can be used to add points, in the form of (time.time(), value)

These are dynamically added to the plot, and the web page will be updated as points are added.

An example browser image is:

![Terminal screenshot](https://github.com/bernie-skipole/webtimeline/raw/main/Screenshot.png)

The program can be installed from Pypi into a virtual environment, which will automaticall pull in dependencies.

Running "python3 -m webtimeline" will then run the following script and will serve the above chart:

    import asyncio, time, random

    from webtimeline import WebTimeLine

    ## This creates an example web service, with random measurements every ten seconds

    tline =  WebTimeLine(host='localhost', port=8000, basepath=None, hours=1, title="My Title", description="Data display")

    # set a y axis, lowest value 0.0
    #               highest 80.0
    #               with four intervals up the axis (five values shown at grid lines)
    #               and axis numbers printed with one decimal point

    tline.set_y_axis(ymin=0.0, ymax=80.0, yintervals=4, yformat=".1f")

    async def my_function(tline):
        "Create data and send it using tline.putpoint()"
        while True:
            value = random.uniform(30, 70)   # random value used here
            tline.set_description(f"Latest value = {value:.1f}")
            await tline.putpoint(time.time(), value)
            await asyncio.sleep(10) # pause 10 seconds between readings

    ## create two tasks, one runs the web server, one gathers data

    async def runchart():
        async with asyncio.TaskGroup() as tg:
            tg.create_task( tline.serve(tg) )
            tg.create_task( my_function(tline) )
            print("Now serving at localhost:8000")

    asyncio.run(runchart())

Alternatively, if you use UV, simply running "uvx webtimeline" will load and run the above.

The web page is purposely minimal, without any CSS. The code could be obtained from github and the Mako templates altered for a more pleasant view. Feel free to adapt, this is public domain using the 'unlicense'.

Dependencies are:

    litestar[standard]
    mako
    minilineplot

Details of the WebTimeLine class are:

**WebTimeLine(host, port, basepath, hours, height, width, title, description)**

host is a string, default 'localhost'

port is an integer, default 8000

basepath is either None, or a string such as '/graph/' which will set a path segment which will be prepended to the URL path.

hours is the hours, between 1 and 48, displayed along the x axis.

height is the height of the image, default 600.

width is the width of the image, default 800.

title, if given is a string shown at the top of the graph.

description, if given, is a string shown at the bottom of the graph.

**Methods**

**serve(tg)**

(async method) Set this as a task to serve the web page, tg should be a taskgroup

**putpoint(t, v)**

(async method) await this to add a point to the graph.

t must be a time.time() point, that is, a float which is seconds since January 1st 1970.

v is the value to be plotted.

The following methods, if called, will take affect on the next chart update when putpoint is called.

**set_colors(backcol, gridcol, axiscol, chartbackcol, linecol)**

If called sets chart colours.

backcol is default "white", The background colour of the whole image

gridcol is default "grey", The colour of the chart grid

axiscol is default "black", The colour of axis, title and description

chartbackcol is default "white", The background colour of the chart

linecol is default "blue", The colour of the line being plotted

All these colour names are SVG names and can be set as:

Color Names: "red", "blue" etc.

Hex Codes: "#FF0000" for red.

RGB/RGBA: "rgb(255,0,0)" or "rgba(255,0,0,0.5)" (with opacity).

HSL/HSLA: "hsl(0,100%,50%)" or "hsla(0,100%,50%,0.5)" (hue, saturation, lightness, alpha)

**set_title(title)**

Sets a new title on the graph.

**set_description(description)**

Sets a new description at the bottom of the graph.

**set_y_axis(ymin, ymax, yintervals, yformat)**

Sets the y axis minimum and maximum values.

If this is not called, an automatic y scaling will be used.

If it is called, then these values will be set, however if any y point exceeds these values, then the chart will revert to auto-scaling.

If you wish to purposely revert to auto-scaling, call this with None values.

yintervals sets the grid and number intervals up the y axis.

yformat is a string which defines how the y axis numbers are displayed. So the string ".2f" will show numbers with two decimal places.

The auto-scaling feature will inspect the line points, and attempt to set all these values automatically.

**set_localtime(tflag)**

If tflag is True, (the default) the time values on the x axis will show local time (local time of the server).

If tflag is False, the time values will be UTC.












