1
0
mirror of synced 2025-12-22 11:31:02 -05:00

even more link fixes (#7148)

* even more link fixes

* add remaining exchangerates items
This commit is contained in:
Jared Rhizor
2021-10-20 12:56:55 -07:00
committed by GitHub
parent 67b01e78bd
commit 1affb14827
11 changed files with 19 additions and 19 deletions

View File

@@ -10,7 +10,7 @@ We'll begin by creating a stream to represent the data that we're pulling from t
```python
class ExchangeRates(HttpStream):
url_base = "https://api.ratesapi.io/"
url_base = "https://api.exchangeratesapi.io/"
# Set this as a noop.
primary_key = None

View File

@@ -36,7 +36,7 @@ Let's begin by pulling data for the last day's rates by using the `/latest` endp
```python
class ExchangeRates(HttpStream):
url_base = "https://api.ratesapi.io/"
url_base = "https://api.exchangeratesapi.io/"
primary_key = None
@@ -133,7 +133,7 @@ from datetime import datetime, timedelta
class ExchangeRates(HttpStream):
url_base = "https://api.ratesapi.io/"
url_base = "https://api.exchangeratesapi.io/"
cursor_field = "date"
primary_key = "date"