Metadata-Version: 2.4
Name: keplergl
Version: 0.4.0rc1
Summary: Kepler.gl Jupyter Widget
Author: Uber Technologies, Inc.
License: MIT
Classifier: Framework :: Jupyter
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: anywidget>=0.9.0
Requires-Dist: geoarrow-pandas>=0.1.1
Requires-Dist: geoarrow-pyarrow>=0.1.2
Requires-Dist: geopandas>=0.14.3
Requires-Dist: pyarrow>=16.0.0
Requires-Dist: traitlets>=5.0
Provides-Extra: dev
Requires-Dist: jupyterlab>=4.0; extra == 'dev'
Requires-Dist: notebook>=7.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# kepler.gl for Jupyter

[![PyPI version](https://img.shields.io/pypi/v/keplergl.svg)](https://pypi.org/project/keplergl/)
[![PyPI prerelease](https://img.shields.io/pypi/v/keplergl.svg?include_prereleases&label=prerelease)](https://pypi.org/project/keplergl/#history)

This is the [kepler.gl](http://kepler.gl) Jupyter widget, an advanced geospatial visualization tool for rendering large-scale interactive maps in Jupyter Notebook and JupyterLab.



## Installation

```shell
pip install keplergl
```

### Prerequisites
- Python >= 3.9
- JupyterLab >= 4.0 or Notebook >= 7.0

## Quick Start

```python
from keplergl import KeplerGl

# Create a map
map = KeplerGl(height=400)

# Add data
map.add_data(data=df, name='my_data')

# Display the map
map
```

## Documentation

For full documentation, visit [https://docs.kepler.gl/docs/keplergl-jupyter](https://docs.kepler.gl/docs/keplergl-jupyter).

## License

MIT
