Substack loader improvements (#952)

Co-authored-by: Deshraj Yadav <deshrajdry@gmail.com>
This commit is contained in:
Sidharth Mohanty
2023-12-08 03:42:50 +05:30
committed by GitHub
parent 51ebf3439b
commit d62a23edf6
3 changed files with 26 additions and 5 deletions

View File

@@ -27,6 +27,7 @@ Embedchain comes with built-in support for various data sources. We handle the c
<Card title="💬 Discord" href="/data-sources/discord"></Card>
<Card title="📝 Github" href="/data-sources/github"></Card>
<Card title="⚙️ Custom" href="/data-sources/custom"></Card>
<Card title="📝 Substack" href="/data-sources/substack"></Card>
<Card title="🐝 Beehiiv" href="/data-sources/beehiiv"></Card>
</CardGroup>

View File

@@ -2,15 +2,15 @@
title: "📝 Substack"
---
To add any Substack data sources to your app, just add the sitemap.xml of that url as the source and set the data_type to `substack`.
To add any Substack data sources to your app, just add the main base url as the source and set the data_type to `substack`.
```python
from embedchain import Pipeline as App
app = App()
# source: for any substack just add the sitemap.xml url
app.add('https://www.lennysnewsletter.com/sitemap.xml', data_type='substack')
# source: for any substack just add the root URL
app.add('https://www.lennysnewsletter.com', data_type='substack')
app.query("Who is Brian Chesky?")
# Answer: Brian Chesky is the co-founder and CEO of Airbnb.
```