Skip to main content

Lightweight classroom-polling library

Project description

mentipy

mentipy is a lightweight, self-hosted classroom-polling library for LaTeX presentations. It generates LaTeX snippets and QR codes for audience questions, then runs a local HTTP server that collects responses in a local JSON store.

It is meant for lectures where you want Mentimeter-style interaction without a cloud service: put polls in the lecture source, compile the slides or handout, serve the poll locally, and let students answer by scanning the QR code.

Basic Workflow

  1. Render questions from PythonTeX or from the mentipy render CLI.
  2. Compile the LaTeX document so the generated QR codes are embedded.
  3. Start the polling server with mentipy serve --store ./mentipy.json.
  4. Let respondents scan the QR codes and answer the questions.
  5. Watch or export answers with mentipy watch, mentipy export, or the live results page.

The examples below keep state in ./mentipy.json and write QR artifacts in mentipy-obj/.

Authoring a Poll

Both authoring paths produce the same kind of LaTeX fragment. Use the Python helpers when your document build already runs PythonTeX; use the CLI when you want to inspect or redirect the generated LaTeX yourself.

PythonTeX-style authoring:

from mentipy.latex import mc

print(
    mc(
        "How confident do you feel about the course goals?",
        ["Very confident", "Somewhat confident", "Not yet"],
        base_url="http://localhost:8080",
        qr_dir="mentipy-obj",
        layout="article+qr",
    )
)

The matching CLI command:

mentipy render mc "How confident do you feel about the course goals?" \
  "Very confident" "Somewhat confident" "Not yet" \
  --base-url http://localhost:8080 \
  --qr-dir mentipy-obj \
  --layout article+qr

The CLI prints LaTeX to standard output, so you can redirect it into a file:

mentipy render mc "Ready for the next section?" \
  "Yes" "Need a recap" "Not yet" > poll.tex

Question Kinds

Use the question kind that matches the response shape you want to collect.

Response shape Python helper CLI command
One listed option mc(text, options) mentipy render mc TEXT OPTION...
Several listed options mc(text, options, multi=True) mentipy render mc --multi TEXT OPTION...
Free text open_text(text) mentipy render open TEXT
Numeric scale scale(text, low=1, high=5) mentipy render scale TEXT --low 1 --high 5
Word cloud word_cloud(text) mentipy render word-cloud TEXT

Open-text questions can also collect uploaded files. Pass fence="python" or --fence python when uploaded code should be rendered as a language-tagged Markdown code block on the results page.

Word-cloud questions default to render="svg". Installing mentipy[wordcloud] lets that mode use the optional wordcloud layout engine; without it, mentipy falls back to its built-in SVG renderer.

Layout and LaTeX Integration

Rendering options control the LaTeX wrapper without changing the poll identity.

Option Purpose
layout="slide" / --layout slide Render for presentation slides.
layout="article" / --layout article Render a flat article-style question.
layout="article+qr" / --layout article+qr Include the QR image beside the article-style question.
layout="auto" / --layout auto Let mentipy choose from the surrounding context.
environment="exercise" / --env exercise Wrap the question in an existing LaTeX environment.
show_url=False / --no-url Suppress the printed respondent URL when the layout supports it.

The named LaTeX environment must already be defined by your document class or preamble. For example, a lecture note template can use environment="exercise" to reuse its existing exercise styling and counters.

Serving Polls

After the questions have been registered during rendering, start the local server:

mentipy serve --store ./mentipy.json

Use --results when respondents should land on the live results page after submitting an answer:

mentipy serve --store ./mentipy.json --results

Terminal helpers use question hash prefixes. List registered questions first, then watch or export one question by prefix:

mentipy list --store ./mentipy.json
mentipy watch f379 --store ./mentipy.json
mentipy export f379 --format csv --store ./mentipy.json

Respondent URLs and QR Codes

You can pass base_url / --base-url while rendering, or store a default:

mentipy config set base_url http://localhost:8080

If no base URL is configured, mentipy resolves the current LAN address from the serving port. Because QR codes are generated when the document compiles, mentipy serve may regenerate remembered QR images and ask you to recompile the slides so the PDF embeds the updated codes.

For public access, mentipy serve can expose the local server in two modes:

mentipy serve --store ./mentipy.json --public upnp
mentipy config set ssh_tunnel user@example.org:8080
mentipy serve --store ./mentipy.json --public ssh

The UPnP mode requires the optional mentipy[public] dependency and a router that accepts temporary port mappings. The SSH mode uses an SSH reverse tunnel; the remote SSH server must allow the forwarded port to be reached publicly.

The polling server is intentionally simple. Anyone with the URL can submit answers, and with --results they can view the live tally. Treat a public poll URL like a shared room link, not like a private admin interface.

Discovering Commands

Useful entry points while learning the tool:

mentipy render --help
python3 -m pydoc mentipy.latex
mentipy tutorial list
mentipy tutorial run using-tutorials

The tutorial sequence mirrors the usage introduction: authoring paths, question kinds, layout and environment choices, respondent URLs, and serving/publication.

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

mentipy-0.3.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mentipy-0.3-py3-none-any.whl (47.0 kB view details)

Uploaded Python 3

File details

Details for the file mentipy-0.3.tar.gz.

File metadata

  • Download URL: mentipy-0.3.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.13.7 Linux/6.17.0-22-generic

File hashes

Hashes for mentipy-0.3.tar.gz
Algorithm Hash digest
SHA256 0e3e3747163e67beb961884eaa3e64df14e9ce61d604d3539b7e82a1daea17dc
MD5 befc91bdce320528b02e5bbf79b73ee1
BLAKE2b-256 f3f352f442621fd78c82879083b78b533e4ec8d3101f2926c98091b3413575c9

See more details on using hashes here.

File details

Details for the file mentipy-0.3-py3-none-any.whl.

File metadata

  • Download URL: mentipy-0.3-py3-none-any.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.13.7 Linux/6.17.0-22-generic

File hashes

Hashes for mentipy-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d9fdd3181b9692368f5cc86662e16b5815ae619049a4a886865250a9b60ff527
MD5 c9b3833f2a749f489977e53ec5ba6784
BLAKE2b-256 534fadeb4cacf1634d03fe44bed4d26c0f5b3ecdd448f25fa6f7757a86e17d67

See more details on using hashes here.

Supported by

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