Metadata-Version: 2.4
Name: motalk
Version: 0.1.0
Summary: A Python package
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/motalk
Project-URL: Repository, https://github.com/yourusername/motalk.git
Project-URL: Issues, https://github.com/yourusername/motalk/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: importlib-metadata>=1.0; python_version < "3.8"
Requires-Dist: anywidget>=0.9.0
Requires-Dist: traitlets>=5.0
Dynamic: license-file

# motalk

Widgets for talking to/with Python from a notebook.

## Overview

motalk provides interactive speech-to-text widgets for Jupyter notebooks, built on top of [anywidget](https://anywidget.dev/). It enables voice input capabilities directly in your notebook environment, making it easy to capture spoken text and use it in your Python code. It uses the Webkit Speech API from your browser too, which means you don't have to worry about API keys. Be ware though: different browsers may have different levels of support for this feature.

## Installation

```bash
pip install motalk
```

## Quick Start

```python
import motalk

# Create a speech-to-text widget
widget = motalk.WebkitSpeechToTextWidget()

# Display the widget
widget
```
