Nodetella provides statistics for the Material Maker materials from the public assets website. The materials are inserted into a SQLite database and exposed via Datasette.
An online demo is available on https://nodetella.spevktator.io/material_maker Take a look at the example queries on the above page.
To install and run nodetella locally, you need at least Python 3.x and a couple Python libraries which you can install with pipenv
.
git clone https://github.com/MischaU8/nodetella.git
cd nodetella
pipenv install
pipenv run get_mats.py
pipenv run datasette data/
Recommended: Take a look at pipenv. This tool provides isolated Python environments, which are more practical than installing packages systemwide. It also allows installing packages without administrator privileges.