-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
I'm imagining adding a CensusApi::FieldFinder module that lets people search for fields with a certain string in them, for example:
@finder = CensusApi::FieldFinder.new
@finder.find_table 'population'This would return all the tables whose names include 'population', and their symbols for use in a text-based Client#find:
[
{name: 'Institutionalized Population', code: 'PC02', symbol: :institutionalized_pop},
{name: 'Noninstitutionalized Population', code: 'PC07', symbol: :noninstitutionalized_pop},
...
]Reactions are currently unavailable