-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1750 from dlt-hub/docs/move_sources_and_destinations
Move sources and destinations to the top level
- Loading branch information
Showing
11 changed files
with
181 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 31 additions & 17 deletions
48
docs/website/docs/dlt-ecosystem/verified-sources/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,48 @@ | ||
--- | ||
title: Verified sources | ||
description: List of verified sources | ||
keywords: ['verified source'] | ||
title: Sources | ||
description: Available sources | ||
keywords: ['source'] | ||
--- | ||
import DocCardList from '@theme/DocCardList'; | ||
import Link from '../../_book-onboarding-call.md'; | ||
import DocCardList from '@theme/DocCardList'; | ||
import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; | ||
|
||
Choose from our collection of verified sources, developed and maintained by the dlt team and community. Each source is rigorously tested against a real API and provided as Python code for easy customization. | ||
|
||
Planning to use dlt in production and need a source that isn't listed? We're happy to help you build it: <Link />. | ||
Planning to use `dlt` in production and need a source that isn't listed? We're happy to help you build it: <Link/>. | ||
|
||
### Popular sources | ||
### Core sources | ||
|
||
- [SQL databases](sql_database). Supports PostgreSQL, MySQL, MS SQL Server, BigQuery, Redshift, and more. | ||
- [REST API generic source](rest_api). Loads data from REST APIs using declarative configuration. | ||
- [OpenAPI source generator](openapi-generator). Generates a source from an OpenAPI 3.x spec using the REST API source. | ||
- [Cloud and local storage](filesystem). Retrieves data from AWS S3, Google Cloud Storage, Azure Blob Storage, local files, and more. | ||
<DocCardList items={useCurrentSidebarCategory().items.filter( | ||
item => item.label === '30+ SQL Databases' || item.label === 'REST API generic source' || item.label === 'Filesystem' | ||
)} /> | ||
|
||
### Full list of verified sources | ||
### Verified sources | ||
|
||
<DocCardList /> | ||
Choose from our collection of verified sources, developed and maintained by the `dlt` team and community. Each source is rigorously tested against a real API and provided as Python code for easy customization. | ||
|
||
:::tip | ||
If you're looking for a source that isn't listed and it provides a REST API, be sure to check out our [REST API generic source](rest_api) | ||
source. | ||
If you couldn't find a source implementation, you can easily create your own, check out the [resource page](../../general-usage/resource) to learn how! | ||
::: | ||
|
||
<DocCardList items={useCurrentSidebarCategory().items.filter( | ||
item => item.label !== '30+ SQL Databases' && item.label !== 'REST API generic source'&& item.label !== 'Filesystem' | ||
)} /> | ||
|
||
### What's the difference between core and verified sources? | ||
|
||
The main difference between the [core sources](#core-sources) and [verified sources](#verified-sources) lies in their structure. | ||
Core sources are generic collections, meaning they can connect to a variety of systems. For example, the [SQL Database source](sql_database) can connect to any | ||
database which supports SQLAlchemy. | ||
|
||
According to our telemetry, core sources are the most widely used among our users! | ||
|
||
It's also important to note that core sources are integrated into the `dlt` core library, | ||
whereas verified sources are maintained in a separate [repository](https://github.com/dlt-hub/verified-sources). | ||
To use a verified source, you need to run the `dlt` init command, which will download the verified source code to | ||
your working directory. | ||
|
||
|
||
### Get help | ||
|
||
* Source missing? [Request a new verified source.](https://github.com/dlt-hub/verified-sources/issues/new?template=source-request.md) | ||
* Missing endpoint or a feature? [Request or contribute](https://github.com/dlt-hub/verified-sources/issues/new?template=extend-a-source.md) | ||
* [Join our Slack community](https://dlthub.com/community) and ask in the technical-help channel. | ||
* [Join our Slack community](https://dlthub.com/community) and ask in the technical-help channel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/website/docs/dlt-ecosystem/verified-sources/sql_database.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.