Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdate ct_search() to allow for "All of yyyy" queries #14
Comments
|
Function |
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up|
Function |
This was brought up by GH user pedromein in issue #12. The Comtrade API has a (new?) feature that allows for queries that return monthly data (vs annual data) for an entire individual year. Previously, if searching for monthly data, there were two options:
alltostart_dateandend_dateto get all monthly data for all years.start_dateandend_date. Doing this, the most you could get from a single query was five consecutive months worth of data.Now they have an option to get all monthly data for a single year. So need to update
ct_search()to give users this option.