Metadata-Version: 2.1
Name: embedlit
Version: 0.0.0
Summary: Embed your social media content and other online stuff with ease on Streamlit dashboards
Home-page: https://github.com/ineelhere/embedlit
License: Apache License - Version 2.0
Author: Indraneel Chakraborty
Requires-Python: >=3.8
Classifier: License :: Other/Proprietary 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-Dist: Streamlit (>=1.15.0)
Description-Content-Type: text/markdown

# EmbedLit
Embed your social media content and other online stuff with ease on Streamlit dashboards

## Usage

### Install the package from PYPI

```python
pip install embedlit
```
### Import the package

```python
from embedlit import *
hello()
```
Running `hello()` should give you a simple welcome message -
```
Hello there 👋 
Welcome to embedlit! 🚀
```
### Embed Twitter Post

```python
from embedlit import *
tweet_embed(tweet_url = "https://x.com/MrBean/status/1783767984194118058", 
            height = 600, 
            alignment = 'center')
```

![alt text](files/tweet_embed.png)
