Skip to content

Modules

Pixlet scripts have access to a couple of modules that can be very helpful in developing applets. To make use of a module, use the load statement.

The example below would load the render.star Starlark module, extract the render identifier and make it available to the script as the symbol render.

load("render.star", "render")

It's also possible to assign the identifiers to a different symbol. In this example, the render module is made available to the script as the symbol r instead of render:

load("render.star", r = "render")

Starlib modules

Pixlet offers a subset of the modules provided by the Starlib project. For documentation of the individual modules, please refer to the Starlib documentation.

Module Description
bsoup.star Beautiful Soup-like functions for HTML
compress/gzip.star gzip decompressing
compress/zipfile.star zip decompressing
encoding/base64.star Base 64 encoding and decoding
encoding/csv.star CSV decoding
encoding/json.star JSON encoding and decoding
hash.star MD5, SHA1, SHA256 hash generation
html.star jQuery-like functions for HTML
math.star Mathematical functions and constants
re.star Regular expressions
time.star Time operations

Starlib HTTP

Pixlet includes an enhanced version of the Starlib HTTP module.

Additional features:

  • HTTP client accepts a parameter ttl_seconds to optionally cache HTTP responses.
  • Responses include a status property which contains the status text and the status code (e.g. "401 Unauthorized").
  • Additional function http.status_text(code) allows an applet to get the status text for a given status code (e.g. "Unauthorized").
Module Description
http.star HTTP client with caching

Pixlet module: Cache

In addition to the Starlib modules, Pixlet offers a cache module.

Function Description
set(key, value, ttl_seconds=60) Writes a key-value pair to the cache, with expiration as a TTL.
get(key) Retrieves a value by its key. Returns None if key doesn't exist or has expired.

Keys and values must all be string. Serialization of non-string data is the developer's responsibility.

Example:

load("cache.star", "cache")
def get_counter():
    i = cache.get("counter")
    if i == None:
        i = 0
    cache.set("counter", str(i + 1), ttl_seconds=3600)
    return i + 1
...

Pixlet module: File

The file module lets you load files from your app's directory as assets. Unlike other modules, you don't load a .star file. Instead, you load the asset path directly and alias the "file" identifier to a variable of your choosing:

load("my_image.png", img = "file")

This gives you a File object bound to img. Note that the alias (img = "file") is required since Starlark's load statement only imports named identifiers - there's no default export to grab.

File object

Attribute / Method Description
path The path of the file as a string.
readall(mode?) Reads the entire file. mode can be "r" or "rt" for text (default), or "rb" for binary data.

Example:

load("render.star", "render")
load("icon.png", icon_file = "file")
load("message.txt", message_file = "file")

ICON = icon_file.readall("rb")
MESSAGE = message_file.readall()

def main():
    return render.Root(
        child = render.Row(
            children = [
                render.Image(src=ICON),
                render.Text(MESSAGE),
            ],
        ),
    )

Pixlet module: HMAC

This module implements the HMAC algorithm as described by RFC 2104.

Function Description
md5(key, string) Returns md5 hash of a string using the provided key
sha1(key, string) Returns sha1 hash of a string using the provided key
sha256(key, string) Returns sha256 hash of a string using the provided key

Example:

load("hmac.star", "hmac")

sum = hmac.md5("secret", "hello world!")
print(sum)
# Output: 0a0461e10e89506d7c31a145663bed93

Pixlet module: Humanize

The humanize module has formatters for units to human friendly sizes.

Function Description
time(date) Lets you take a time.Time and spit it out in relative terms. For example, 12 seconds ago or 3 days from now.
relative_time(date1, date2, label1?, label2?) Formats a time into a relative string. It takes two time.Times and two labels. In addition to the generic time delta string (e.g. 5 minutes), the labels are used applied so that the label corresponding to the smaller time is applied.
time_format(format, date?) Takes a Java SimpleDateFormat and returns a Go layout string. If you pass it a date, it will apply the format using the converted layout string and return the formatted date.
day_of_week(date) Returns an integer corresponding to the day of the week, where 0 = Sunday, 6 = Saturday.
bytes(size, iec?) Lets you take numbers like 82854982 and convert them to useful strings like, 83 MB. You can optionally format using IEC sizes like, 83 MiB.
parse_bytes(formatted_size) Lets you take strings like 83 MB and convert them to the number of bytes it represents like, 82854982.
comma(num) Lets you take numbers like 123456 or 123456.78 and convert them to comma-separated numbers like 123,456 or 123,456.78.
float(format, num) Returns a formatted number as string with options. Examples: given n = 12345.6789: #,###.## => 12,345.67, #,###. => 12,345
int(format, num) Returns a formatted number as string with options. Examples: given n = 12345: #,###. => 12,345
ordinal(num) Lets you take numbers like 1 or 2 and convert them to a rank/ordinal format strings like, 1st or 2nd.
ftoa(num, digits?) Converts a float to a string with no trailing zeros.
plural(quantity, singular, plural?) Formats an integer and a string into a single pluralized string. The simple English rules of regular pluralization will be used if the plural form is an empty string (i.e. not explicitly given)..
plural_word(quantity, singular, plural?) Builds the plural form of an English word. The simple English rules of regular pluralization will be used if the plural form is an empty string (i.e. not explicitly given).
word_series(words, conjunction) Converts a list of words into a word series in English. It returns a string containing all the given words separated by commas, the coordinating conjunction, and a serial comma, as appropriate.
oxford_word_series(words, conjunction) Converts a list of words into a word series in English, using an Oxford comma. It returns a string containing all the given words separated by commas, the coordinating conjunction, and a serial comma, as appropriate.
url_encode(str) Escapes the string so it can be safely placed inside a URL query.
url_decode(str) The inverse of url_encode. Converts each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB

Example:

See examples/humanize/humanize.star for an example.

Pixlet module: i18n

The i18n module provides a single helper that formats strings using the active locale. See the Internationalization guide for creating locale files and selecting a language at runtime.

Function Description
tr(format, *args) Looks up format in the loaded locale catalog, formats it using Go's fmt.Sprintf semantics, and returns the localized string. Missing entries fall back to the source string.

Pixlet module: XPath

The xpath module lets you extract data from XML documents using XPath queries.

Function Description
loads(doc) Parses an XML document and returns an xpath object

On an xpath object, the following methods are available:

Method Description
query(path) Retrieves text of the first tag matching the path
query_all(path) Retrieves text of all tags matching the path
query_node(path) Retrieves the first tag matching the path as an xpath object
query_all_nodes(path) Retrieves all tags matching the path as xpath objects

The query_node and query_all_nodes methods allow you to recursively query the XML document, which can be useful if you need to query several tags that are nested underneath some parent tag.

Example:

load("xpath.star", "xpath")

doc = """
<foo>
    <bar>bar</bar>
    <bar>baz</bar>
</foo>
"""

def get_bars():
    x = xpath.loads(doc)
    return x.query_all("/foo/bar")

def also_get_bars():
    x = xpath.loads(doc)
    foo = x.query_node("/foo")
    return foo.query_all("/bar")
...

Pixlet module: Render

The render.star module is where Pixlet's Widgets live. All of them are documented in a fair bit of detail in the widget documentation.

Example:

load("render.star", r="render")
def main():
    return r.Root(child=r.Box(width=12, height=14, color="#ff0"))

Canvas

The render.star module also provides canvas, which lets an app fetch information about the current output configuration.

Function Description
width(raw?) Returns the device width in px. Pass raw to get the unscaled value.
height(raw?) Returns the canvas height in px. Pass raw to get the unscaled value.
size(raw?) Returns a tuple with the canvas width and height in px. Pass raw to get the unscaled value.
is2x() Returns true if the device renders at 2x resolution.
load("render.star", "render", "canvas")

def main(config):
    w, h = canvas.width(), canvas.height()
    return render.Root(
        child = render.Padding(
            child = render.Text("%dx%d" % (w, h)),
            pad = 1,
        ),
    )

Pixlet module: Color

The color.star module provides color manipulation functions and a Color object that can be passed to widgets.

Function Description
rgb(r, g, b, a?) Creates a Color object from RGB(A) values.
hex(value) Creates a Color object from a hex string.
hsv(h, s, v, a?) Creates a Color object from HSV(A) values.

Color object

The Color object represents a color and provides ways to manipulate and retrieve its components in different formats. It can also be passed to a widget in-place of a hex string.

Fields

The following fields are available on a Color object and can be both read and written:

Field Type Description
r int Red component (0-255)
g int Green component (0-255)
b int Blue component (0-255)
a int Alpha component (0-255)
h float Hue (0-360)
s float Saturation (0-1)
v float Value (0-1)
Methods
Method Description
hex() Returns the color as a hex string (e.g. #ff0000 or #ff000080).
rgb() Returns an (r, g, b) tuple.
rgba() Returns an (r, g, b, a) tuple.
hsv() Returns an (h, s, v) tuple.
hsva() Returns an (h, s, v, a) tuple.

Example:

load("color.star", "color")

def main():
    c = color.hex("#f00")
    c.g = 255
    print(c.hex())
    # Output: "#ff0"

    c.h = 240 # change to blue
    print(c.hex())
    # Output: "#00f"

RGB

Creates a color from red, green, blue, and optionally alpha components.

Parameters:

  • r, g, b: Integers (0-255).
  • a (optional): Integer (0-255), defaults to 255.

Example:

load("color.star", "color")

def main():
    c = color.rgb(255, 0, 0)
    print(c.r, c.g, c.b)
    # Output: 255 0 0

Hex

Creates a color from a hex string (e.g., #ff0000, #f00, #ff000080, or #f008).

Parameters:

  • value: The hex color string.

Example:

load("color.star", "color")

def main():
    c = color.hex("#f00")
    print(c.rgba())
    # Output: (255, 0, 0, 255)

HSV

Creates a color from Hue, Saturation, Value, and optionally alpha components.

Parameters:

  • h: Hue (0-360).
  • s: Saturation (0-1).
  • v: Value (0-1).
  • a (optional): Integer (0-255), defaults to 255.

Example:

load("color.star", "color")

def main():
    c = color.hsv(0, 1, 1)
    print(c.hex())
    # Output: "#f00"

Pixlet module: Schema

The schema module provides configuration options for your app. See the schema documentation for more details.

Example:

See examples/schema_hello_world/schema_hello_world.star for an example.

Pixlet module: Sunrise

The sunrise module calculates sunrise and sunset times for a given set of GPS coordinates and timestamp.

Function Description
sunrise(lat, lng, date) Calculates the sunrise time for a given location and date.
sunset(lat, lng, date) Calculates the sunset time for a given location and date.
elevation(lat, lng, time) Calculates the elevation of the sun above the horizon for a given location and point in time.
elevation_time(lat, lng, elev, date) Calculates the two times at which the sun was at the given elevation above the horizon for a given location and date. Returns None if the sun never reached the given elevation.

Example:

See examples/sunrise/sunrise.star for an example.

Pixlet module: Random

The random module provides a pseudorandom number generator for pixlet. The generator is automatically seeded on each execution. The seed itself changes every 15 seconds, making apps deterministic over that same time window. This behavior enables more effective caching of execution results on Tronbyt servers. Developer can reseed via random.seed if needed.

Function Description
seed(s) Seeds the generator.
number(min, max, secure?) Returns a random number between the min and max. The min must be 0 or greater, and must be less than the max. If secure=True, a cryptographically secure random number generator is used.
float() Returns a random float between 0 and 1.

Example:

load("random.star", "random")

def main(config):
    num = random.number(0, 100)
    if num > 50:
        print("You win!")
    else:
        print("Better luck next time!")

Note

Setting secure=True will use a cryptographically secure random number generator, which bypasses deterministic seeding and may impact the effectiveness of caching.

Pixlet module: QRCode

The qrcode module provides a QR code generator for pixlet!

Function Description
generate(url, size, color?, background?) Returns a QR code as an image that can be passed into the image widget.

Sizing works as follows:

  • small: 21x21 pixels
  • medium: 25x25 pixels
  • large: 29x29 pixels

Note

We're working with some of the smallest possible QR codes in this module, so the amount of data that can be used for the URL is extremely limited.

Example:

load("cache.star", "cache")
load("encoding/base64.star", "base64")
load("render.star", "render")
load("qrcode.star", "qrcode")

def main(config):
    url = "https://tronbyt.com?utm_source=pixlet_example"

    data = cache.get(url)
    if data == None:
        code = qrcode.generate(
            url = url,
            size = "large",
            color = "#fff",
            background = "#000",
        )
        cache.set(url, base64.encode(code), ttl_seconds = 3600)
    else:
        code = base64.decode(data)

    return render.Root(
        child = render.Padding(
            child = render.Image(src = code),
            pad = 1,
        ),
    )

Pixlet module: YAML

The yaml module provides functions to decode and encode YAML.

Function Description
decode(x) Decodes a YAML-formatted string.
encode(x, indent?) Encodes a value to a YAML-formatted string. The indent parameter defaults to 2.

Example:

load("encoding/yaml.star", "yaml")
load("render.star", "render")

EXAMPLE_YAML = "message: Hello, world!"

def main(config):
    data = yaml.decode(EXAMPLE_YAML)
    return render.Root(render.Text(data["message"]))

Pixlet module: Strings

The strings module provides string manipulation functions.

Function Description
pad(text, length, align?, char?) Returns the string padded to be at least length characters long.
truncate(text, length, ellipsis?) Returns the string truncated to be at most length characters long.

Pad

Parameters:

  • text: The string to pad.
  • length: The minimum length of the resulting string.
  • align (optional): The alignment of the text. Can be "start" (default) or "end".
  • char (optional): The character to pad with. Defaults to space.

Example:

load("strings.star", "strings")

def main():
    print(strings.pad("foo", 5))
    # Output: "foo  "

    print(strings.pad("foo", 5, "end"))
    # Output: "  foo"

Truncate

Parameters:

  • text: The string to truncate.
  • length: The maximum length of the resulting string.
  • ellipsis (optional): The string to append to the truncated text. Defaults to "…".

Example:

load("strings.star", "strings")

def main():
    print(strings.truncate("hello world", 5))
    # Output: "hell…"

    print(strings.truncate("hello world", 5, "..."))
    # Output: "he..."