Metadata-Version: 2.1
Name: streamlit-keplergl
Version: 0.1.0
Summary: Streamlit Component for rendering kepler.gl maps
Home-page: https://github.com/chrieke/streamlit-keplergl
Author: Christoph Rieke
Author-email: 
License: MIT
Description: # streamlit-keplergl
        
        [![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/chrieke/streamlit-keplergl/main/examples/streamlit-keplergl-example.py)
        [![PyPi](https://img.shields.io/pypi/v/streamlit-analytics)](https://pypi.org/project/streamlit-keplergl/)
        
        **🗾 Streamlit Component for rendering [kepler.gl](https://github.com/keplergl/kepler.gl/tree/master/bindings/kepler.gl-jupyter) maps in a streamlit app.**
        
        ---
        
        <h3 align="center">
          🎈 <a href="https://share.streamlit.io/chrieke/streamlit-keplergl/main/examples/streamlit-keplergl-example.py">Live Demo</a> 🎈
        </h3>
        
        ---
        
        <p align="center">
            <img src="./examples/example-screenshot.png" width=700></a>
        </p>
        
        ## Installation
        
        ```bash
        pip install streamlit-keplergl
        ```
        
        ## How to use it
        
        ```python
        import streamlit as st
        from streamlit_keplergl import keplergl_static
        from keplergl import KeplerGl
        
        st.write("This is a kepler.gl map in streamlit")
        
        map_1 = KeplerGl(height=400)
        keplergl_static(map_1)
        ```
        
        ## Options
        
        ```
        fig: keplergl.KeplerGl map figure.
        height: Height of result. If height is set on the keplergl.KeplerGl object,
                that value supersedes the values set with the keyword arguments of this
                function.
        width: Width of result.
        ```
        
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
