Python wrapper for ICANE Statistical Data and Metadata API
Project description
pyicane is a Python wrapper for the Statistical Office of Cantabria’s (ICANE) metadata restful API. This module parses ICANE’s json data and metadata into Python objects and common data structures such as Pandas dataframes [1]. All ICANE’s API classes and methods are covered; also, time-series data can be downloaded into a Python Pandas dataframe structure.
pyicane is written and maintained by Miguel Expósito Martín and is distributed under the Apache 2.0 License (see LICENSE file).
Installation
pyicane requires pandas and requests packages. For installation:
pip install pyicane
Usage
Get a list of categories
Typical usage often looks like this:
from pyicane import pyicane categories = pyicane.Category.find_all() print categories
Get Time Series Data in a Dataframe
Conversion to dataframe is a useful feature:
from pyicane import pyicane time_series = pyicane.TimeSeries.get('census-series-1900-2001') print time_series.data_as_dataframe()
Get Time Series Metadata in a Dataframe
Let’s check the most relevant metadata:
from pyicane import pyicane time_series = pyicane.TimeSeries.get('census-series-1900-2001') print time_series.metadata_as_dataframe()
Get last updated data
Which was the last ICANE’s API data update:
from pyicane import pyicane print pyicane.Data.get_last_updated()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyicane-0.1.2.tar.gz
.
File metadata
- Download URL: pyicane-0.1.2.tar.gz
- Upload date:
- Size: 183.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e10d2353e5926c48900f594ac9b27df17d7fb5f90b88080b5d24a14ed30d90d |
|
MD5 | 6d71b3ce96e6a4c406b881e8d36006cc |
|
BLAKE2b-256 | 5d2d7cf45fab3975944b3c71cf22245c6a120f6025d770802839456877aac8d0 |