Skip to main content

A note-taking example web application for Picoweb web pico-framework. (Ported from Flask original)

Project description

Notes Pico is a simple note-taking web application. It was originally written by Charles Leifer as a demo of how to write a simple, but slick web application using the Flask web micro-framework. The application is described in the blog post http://charlesleifer.com/blog/saturday-morning-hack-a-little-note-taking-app-with-flask/ . Notes Pico is a port of this application to Picoweb web pico-framework for MicroPython. It was ported by Paul Sokolovsky.

Deploying on MicroPython “Unix” version

To install and run the application, you should install MicroPython “Unix” port as described at https://github.com/micropython/micropython . Once you have micropython executable in your PATH (recommended, but not strictly necessary), change directory to where you want to install the app (~/tmp/ should be good for a quick test) and install notes-pico package:

micropython -m upip install -p app notes-pico

app (argument of -p option) is a subdirectory into which to install the application. To run the app, execute:

MICROPYPATH=app micropython -m notes_pico

This will initialize note storage and output a URL to open in a browser:

* Running on http://127.0.0.1:8081/

Open the link and start adding notes (after typing text press “Add note” button or press Ctrl+Enter). Note that Picoweb port is intended to be simple and low-resource, so supports only plain-text notes, unlike the original Flask application.

Deploying on embedded MicroPython targets

Notes Pico can also run on “embedded” (microcontroller) MicroPython targets with networking capabilities and suitable heap size (TBC). As Notes Pico is full-stack application and contains relatively a lot of code, the only realistic way to deploy it on such systems is using “frozen bytecode” approach, where pre-compiled Python modules are made part of the binary firmware image to flash on the target. Instructions below use MicroPython ESP8266 port as an example.

  1. cd micropython/esp8266

  2. micropython -m upip install -p modules notes-pico

  3. make

  4. make deploy (see README in the directory for more params)

  5. Boot ESP8266 module, run following commands at the device prompt.

  6. import notes_pico.__main__

  7. notes_pico.__main__.main(host=”0.0.0.0”)

  8. Connect with a web browser to http://DEVICE_IP:8081, where DEVICE_IP is an IP address of ESP8266 device. (Consult MicroPython ESP8266 port documentation for network connection setup.)

Storage backends

Notes Pico supports 3 storage backends:

  • BTree

  • Filesystem

  • SQLite3

As a first step towards portability to MicroPython microcontroller versions, the default backend for the package installed from PyPI via the commands in the previous section is BTree database. The notes are stored in notes.db database file of the current directory, in BerkeleyDB 1.x format.

If you would like to try filesystem/SQLite3 backend, you’ll need to checkout https://github.com/pfalcon/notes-pico and edit file notes_pico/config.py. The repository has a convenience Makefile to install dependencies and run the application, similar to the effect achieved by the commands above.

Known issues and limitations

As mentioned above, Picoweb port of the application supports only plain-text notes, no formatting, images or videos.

Currently, Notes Pico tested only with “Unix” MicroPython port, though there’s intention to make it work on microcontroller ports with networking support and suitable resources.

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

notes-pico-0.8.3.tar.gz (7.9 kB view details)

Uploaded Source

File details

Details for the file notes-pico-0.8.3.tar.gz.

File metadata

  • Download URL: notes-pico-0.8.3.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for notes-pico-0.8.3.tar.gz
Algorithm Hash digest
SHA256 74afbca7aec4400f616e1e37b0ea570e6c6fc87fca567ea15ddca3362705a38a
MD5 c9a494187be2096ca530b70fdc04f1f9
BLAKE2b-256 89fff5119acf4bce41e9816ea4f19631bf097ab31e656b8e056293d440193adb

See more details on using hashes here.

Supported by

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