Skip to content

danabauer/census

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

census

A simple wrapper for the United States Census Bureau's API.

Provides access to both the ACS and SF1 data sets.

Requirements

  • python 2.6 or 2.7
  • requests

Usage

First, get yourself a Census API key.

from census import Census, states

c = Census("MY_API_KEY")
c.acs.get(('NAME', 'B25034_010E'), {'for': 'state:%s' % states.MD})

The call above will return the name of the geographic area and the number of homes that were built before 1939 for the state of Maryland. Helper methods have been created to simplify common geometry calls:

c.acs.state(('NAME', 'B25034_010E'), states.MD)

Full details on geometries and the states module can be found below.

The get method is the core data access method on both the ACS and SF1 data sets. The first parameter is either a single string column or a tuple of columns. The second parameter is a geoemtry dict with a for key and on option in key. The for argument accepts a "*" wildcard character or Census.ALL. The wildcard is not valid for the in parameter.

Valid columns by data set:

Geometries

The API supports a wide range of geographic regions. The specification of these can be quite complicated so a number of convenience methods are provided.

Full geometry specifications are available for ACS and SF1.

ACS Geometries

  • state(fields, state_fips)
  • state_county(fields, state_fips, county_fips)
  • state_county_subdivision(fields, state_fips, county_fips, subdiv_fips)
  • state_county_tract(fields, state_fips, county_fips, tract)
  • state_place(fields, state_fips, place)
  • state_district(fields, state_fips, district)
  • us(fields)

SF1 Geometries

  • state(fields, state_fips)
  • state_county(fields, state_fips, county_fips)
  • state_county_subdivision(fields, state_fips, county_fips, subdiv_fips)
  • state_county_tract(fields, state_fips, county_fips, tract)
  • state_place(fields, state_fips, place)
  • state_district(fields, state_fips, district)
  • state_msa(fields, state_fips, msa)
  • state_csa(fields, state_fips, csa)
  • state_district_place(fields, state_fips, district, place)
  • state_zip(fields, state_fips, zip)

States

The states module makes it easy to convert between state abbreviations and FIPS codes. Access attributes by state abbreviation to get the corresponding FIPS code:

>>> from census import states
>>> print states.MD
24

Convert FIPS to state abbreviation using the FIPS dict:

>>> print states.FIPS['24']
MD

Examples

The geographic name for all census tracts for county 170 in Alaska:

c.sf1.get('NAME', geo={'for': 'tract:*', 'in': 'state:%s county:170' % states.AK})

The same call using the state_county_tract convenience method:

c.sf1.state_county_tract('NAME', states.AK, '170', Census.ALL)

Total number of males age 5 - 9 for all states:

c.acs.get('B01001_004E', {'for': 'state:*'})

The same call using the state convenience method:

c.acs.state('B01001_004E', Census.ALL)

About

A Python wrapper for the US Census API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published