Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pgijsbers/openml-htmx
Playground exploring HTMX and HATEOAS with a simple OpenML demo
https://github.com/pgijsbers/openml-htmx
Last synced: 24 days ago
JSON representation
Playground exploring HTMX and HATEOAS with a simple OpenML demo
- Host: GitHub
- URL: https://github.com/pgijsbers/openml-htmx
- Owner: PGijsbers
- Created: 2024-01-22T07:51:17.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-28T22:52:03.000Z (11 months ago)
- Last Synced: 2024-12-01T02:50:57.428Z (25 days ago)
- Language: HTML
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# OpenML Dataset Browser
I wanted to explore the [HTMX](https://htmx.org) framework and the [HATEOAS](https://htmx.org/essays/hateoas/) concept, so I decided to make this page to browse OpenML datasets.
This project is essentially a middle-man: it connects to an OpenML API to fetch data from OpenML, and can then serve HTML components to the client.## Installation
Just install the dependencies in a new virtual environment:
```commandline
python -m venv venv
source venv/bin/activate
python -m pip install -r requirements.txt
```
You can then run the server with `uvicorn`, when developing it is useful to have automatic reloads enabled:
```
uvicorn main:app --reload
```