Metadata-Version: 2.4
Name: apibean-notebook
Version: 0.1.1a2
Summary: Notebook-first utilities for executing APIs, managing sessions, and rendering rich outputs inside Jupyter kernels.
Requires-Python: <4.0,>=3.9
Description-Content-Type: text/markdown
Requires-Dist: asyncio>=3.4.3
Requires-Dist: fastapi<1.0.0,>=0.114.2
Requires-Dist: httpx>=0.28.1
Requires-Dist: ipython>=9.3.0
Requires-Dist: psutil>=7.0.0
Requires-Dist: uvicorn>=0.34.3

## apibean-notebook

📘 **apibean-notebook** is a lightweight, notebook-first library that provides utilities for executing APIs, managing client sessions, and rendering rich, interactive outputs directly inside Jupyter notebooks.

It is designed to be imported and used **inside notebook cells**, focusing on developer experience, exploration, and observability — without requiring any Jupyter server extensions or infrastructure setup.

### ✨ Key Features

* **In-kernel API execution**

  * Run API calls and commands directly from notebook cells
  * Reuse authenticated client sessions and contexts

* **Rich notebook outputs**

  * Display structured data, tables, logs, and status messages
  * Built on top of `IPython.display` and Jupyter’s rich output system

* **Session-aware helpers**

  * Manage API clients, tokens, and default settings across cells
  * Designed to work naturally with iterative notebook workflows

* **No server-side dependencies**

  * Does not require Jupyter server extensions
  * Fully compatible with JupyterLab, VS Code Notebooks, and cloud notebooks

### 🎯 Design Principles

* Notebook-first, not server-first
* Explicit execution, no hidden side effects
* Rich output over raw logs
* Minimal dependencies and fast import time

### 🔒 Scope and Non-Goals

`apibean-notebook` intentionally does **not**:

* Manage Jupyter servers or kernels
* Start background services
* Perform infrastructure orchestration

These concerns are handled by other packages in the apibean ecosystem.
