Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions analysis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__marimo__/
.python-version
.venv/
uv.lock
27 changes: 27 additions & 0 deletions analysis/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Analysis

This directory contains analysis artifacts.

## aws-cost-analysis

A [marimo](https://docs.marimo.io/) interactive python notebook. The notebook utilizes marimo's
inline dependencies feature which is powered by uv, so you either need uv installed or make sure all
the dependencies are installed in the python environment some other way.

I installed uv following https://docs.astral.sh/uv/reference/installer/. Then from the
aws-cost-analysis directory I added a pyproject.toml file with the latest marimo version:

```
[project]
name = "aws-cost-analysis"
version = "1"
readme = "../README.md"
requires-python = ">=3.13"
dependencies = [
"marimo>=0.14.12",
]
```

To launch the notebook to edit in browser:

`uv run marimo edit --sandbox notebook.py`
Loading
Loading