Skip to content

Commit

Permalink
Merge pull request #2471 from moj-analytical-services/docs/fix-backen…
Browse files Browse the repository at this point in the history
…d-api-page

Fix docs examples
  • Loading branch information
ADBond authored Oct 14, 2024
2 parents 520e68d + 6ed9dd8 commit 83df823
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/topic_guides/splink_fundamentals/backends/backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,31 +95,31 @@ Once you have initialised the `linker` object, there is no difference in the sub
```python
from splink import Linker, DuckDBAPI

linker = Linker(your_args. DuckDBAPI)
linker = Linker(df, settings, db_api=DuckDBAPI(...))
```

=== ":simple-apachespark: Spark"

```python
from splink import Linker, SparkAPI

linker = Linker(your_args. SparkAPI)
linker = Linker(df, settings, db_api=SparkAPI(...))
```

=== ":simple-amazonaws: Athena"

```python
from splink import Linker, AthenaAPI

linker = Linker(your_args. AthenaAPI)
linker = Linker(df, settings, db_api=AthenaAPI(...))
```

=== ":simple-sqlite: SQLite"

```python
from splink import Linker, SQLiteAPI

linker = Linker(your_args. SQLiteAPI)
linker = Linker(df, settings, db_api=SQLiteAPI(...))

```

Expand All @@ -128,7 +128,7 @@ Once you have initialised the `linker` object, there is no difference in the sub
```python
from splink import Linker, PostgresAPI

linker = Linker(your_args. PostgresAPI)
linker = Linker(df, settings, db_api=PostgresAPI(...))

```

Expand Down

0 comments on commit 83df823

Please sign in to comment.