Skip to main content

a package to integrate foreca weather api with python client

Project description

Python Foreca Api Client

a simple module to integrate with foreca weather api service

Overview

Installation

This module is a pip package to let you integrate with foreca weather api service provider. in order to use this module you have to install it by pip command or through setup.

pip install foreca_api

Import package into your project by:

from foreca_api.api import ForecaAPI

in order to use the module please consider looking at examples and documentations.

Usage

Before starting to use this module you need to have an account for developers in foreca website, so please go inside the provided link and signup for 30 days free usage.

https://corporate.foreca.com/en/weather-api-freetrial

after signup just wait a few minute and you will get an email with 3 fields to use the service:

  • User
  • Password
  • Administrative password

and also letting you know that you can use the developer api with the link below: https://developer.foreca.com/

in order to test the foreca api you can use postman or any other clients too but first of all you need to have an access_token which you can build through my module or you can do it yourself either way its fine. but remember you have an option to create an unlimited time access_token.

For easy implementations i have provided two simple examples, one for creating authenticating and getting access key and one for simple example to get current data from a location

# importing foreca module
from foreca_api.api import ForecaAPI

# creating an instance client
client = ForecaAPI()

# setting up username and password
client.set_user_pass(username='USERNAME', password='PASSWORD')

# trying to authenticate with provided credentials
client.authenticate()

# if everything is ok you get the access_token
access_token = client.get_access_token()
print(access_token)

now that you have access token with unlimited time access then there is no need for authenticating, you can just set the access_token and proceed with other requests.

#importing foreca module
from foreca_api.api import ForecaAPI

# creating an instance client
client = ForecaAPI()

# setting the access token for headers in client object
client.set_access_token(access_token="your access_token")

# set the location we need the data for
client.set_location(35.8439,50.9715)

# requesting to get result of that specific place
result = client.get_current_weather_location()

print(result)

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

foreca_api-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

foreca_api-0.1.1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page