We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm imagining adding a CensusApi::FieldFinder module that lets people search for fields with a certain string in them, for example:
CensusApi::FieldFinder
@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}, ... ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm imagining adding a
CensusApi::FieldFinder
module that lets people search for fields with a certain string in them, for example:This would return all the tables whose names include 'population', and their symbols for use in a text-based Client#find:
The text was updated successfully, but these errors were encountered: