Metadata-Version: 2.4
Name: seaas
Version: 0.1.0
Summary: Tiny library that prints lab experiment source code (1a..10).
Author: subs
Author-email: subs@reflexlabs.ai
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# seaas

A tiny library that prints lab experiment source code.

## Install

```
pip install seaas
```

## Usage

```python
import seaas as pan

pan.list()        # ['10', '1a', '1b', '2', ..., '9']
pan.exp_1a()      # prints experiment 1a source code
pan.exp_1b()      # prints experiment 1b source code
pan.exp_2()       # ... and so on through exp_10
pan.show("5")     # lookup by string
```

At a Python REPL, `pan.exp_1a` (without parentheses) also prints the code via `__repr__`.
