Skip to content

Julia package to download data from the aeconomica.io API into a Julia DataFrame

License

Notifications You must be signed in to change notification settings

aeconomica/Aeconomica.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aeconomica.jl

Lifecycle CI codecov.io Documentation

Aeconomica.jl provides quick and easy access to the Aeconomica data API.

To use this package, you will need to sign up for a free Aeconomica account to get an API key. You can find the API key in the account page of your Aeconomica account.

Installation

Aeconomica.jl is not registered in the Julia General registry. As such to install to the lastest release, run:

import Pkg
Pkg.add("https://github.com/aeconomica/Aeconomica.jl.git#release")

(Alternatively you can install the development version by removing the #release)

Usage

To grab data for a series - e.g. the level of GDP - simply run (where "YOUR_API_KEY" is the API key from your Aeconomica account):

using Aeconomica
set_apikey("YOUR_API_KEY")
fetch_series("GDP")

To grab an entire dataset of series, and their dimensions - such as ABS weekly jobs by State - just run:

using Aeconomica
set_apikey("YOUR_API_KEY")
fetch_dataset("WJP_STATE")

In each case the series or dataset keys can be found by searching the Aeconomica website. When viewing a series or dataset, the key is shown in the top right. You can also click on the "JULIA" button in the bottom left to get the code you need for the dataset you are viewing.

About

Julia package to download data from the aeconomica.io API into a Julia DataFrame

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages