1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/docs/integrations/sources/weatherstack.md
robgleason 7546450cfe 🎉 New Source: Weatherstack [python cdk] (#16473)
* Added Source Weatherstack

* Clean Code. Took out TODO's.

* Added link to get API key

* Remade check_connection and added Constants

* Added WeatherStack to source_definitions and updated Catalog.json

* deleted configured_catalog.json (not in use)

* Revert "deleted configured_catalog.json (not in use)"

This reverts commit 1b40726335.

* chore: revert change

* chore: format and lint

* chore: attempt to patch unit tests

* Added Classes for Unit tests

* chore: fix coverage

* chore: fix unit tests for weatherstream

* chore: fix weather stack unittests

* chore: fix unittests fr weatherstack

* Added schemas to catalogue

* Update setup.py

* Update build.gradle

* Delete sample_state.json

* support for various account types

* Update source.py

* Delete .dccache

* Update source_definitions.yaml

* Update source_specs.yaml

Co-authored-by: Vincent Koc <koconder@users.noreply.github.com>
Co-authored-by: Vincent Koc <koconder@gmail.com>
Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
2022-11-10 12:38:22 -05:00

40 lines
1.5 KiB
Markdown

# Weatherstack
## Overview
This source connector syncs data from the [Weatherstack API](http://api.weatherstack.com/). This API allows to obtain current, historical, location lookup, and weather forecast.
### Output schema
This source currently has four streams: `current`, `historical`, `forecast`, and `autocomplete`. The Current Weather API is available on all plans. The Historical Weather and Autocomplete API's are available on the standard plan and higher. The Forecast API is available on the Professional plan and higher. Examples of the data outputted by this stream are available [here](https://weatherstack.com/documentation).
### Features
| Feature | Supported? |
| :--- | :--- |
| Full Refresh Sync - (append only) | Yes |
| Incremental - Append Sync | Yes |
| Namespaces | No |
## Getting started
### Requirements
* An Weatherstack API key
* A city or zip code location for which you want to get weather data
* A historical date to enable the api stream to gather data for a specific date
### Setup guide
Visit the [Wetherstack](https://weatherstack.com/) to create a user account and obtain an API key. The current and forecast streams are available with the free plan.
## Rate limiting
The free plan allows 250 calls per month, you won't get beyond these limits with existing Airbyte's sync frequencies.
## Changelog
| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.0 | 2022-09-08 | [16473](https://github.com/airbytehq/airbyte/pull/16473) | Initial release |