Metadata-Version: 2.1
Name: streamlit-browser-engine
Version: 0.0.1
Summary: Streamlit component that allows you to get browser stats like user agent or whether the app is being run on mobile or desktop and more.
Home-page: 
Author: 
Author-email: 
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit (>=0.63)
Provides-Extra: devel
Requires-Dist: wheel ; extra == 'devel'
Requires-Dist: pytest (==7.4.0) ; extra == 'devel'
Requires-Dist: playwright (==1.39.0) ; extra == 'devel'
Requires-Dist: requests (==2.31.0) ; extra == 'devel'
Requires-Dist: pytest-playwright-snapshot (==1.0) ; extra == 'devel'
Requires-Dist: pytest-rerunfailures (==12.0) ; extra == 'devel'

# streamlit-browser-engine

Streamlit component that allows you to get browser stats like user agent or whether the app is being run on mobile or desktop or if you are using Chrome, Firefox, IE etc and more.

## Installation instructions

```sh
pip install streamlit-browser-engine
```

## Usage instructions

```python
import streamlit as st
from browser_detection import browser_detection_engine

value = browser_detection_engine()
st.write(value)

```

params:
- singleRun [defaults to True] - if you only want component to run when app first runs. It will only run once and get the data once. Use False if you want to run everytime app re-runs. 
