SYMBOL INDEX (95 symbols across 2 files) FILE: census/core.py function new_session (line 10) | def new_session(*args, **kwargs): class APIKeyError (line 15) | class APIKeyError(Exception): method __init__ (line 19) | def __init__(self, value): method __str__ (line 22) | def __str__(self): function list_or_str (line 26) | def list_or_str(v): function float_or_str (line 34) | def float_or_str(v): function supported_years (line 41) | def supported_years(*years): function retry_on_transient_error (line 55) | def retry_on_transient_error(func): function chunks (line 74) | def chunks(l, n): function merge (line 80) | def merge(dicts): class CensusException (line 84) | class CensusException(Exception): class UnsupportedYearException (line 88) | class UnsupportedYearException(CensusException): class Client (line 92) | class Client(object): method __init__ (line 98) | def __init__(self, key, year=None, session=None, retries=3): method tables (line 105) | def tables(self, year=None): method fields (line 121) | def fields(self, year=None, flat=False): method get (line 149) | def get(self, fields, geo, year=None, **kwargs): method query (line 164) | def query(self, fields, geo, year=None, sort_by_geoid=False, **kwargs): method _field_type (line 217) | def _field_type(self, field, year): method us (line 235) | def us(self, fields, **kwargs): method state (line 239) | def state(self, fields, state_fips, **kwargs): method state_county (line 245) | def state_county(self, fields, state_fips, county_fips, **kwargs): method state_place (line 252) | def state_place(self, fields, state_fips, place, **kwargs): method state_district (line 259) | def state_district(self, fields, state_fips, district, **kwargs): method state_congressional_district (line 271) | def state_congressional_district(self, fields, state_fips, congression... method state_legislative_district_upper (line 278) | def state_legislative_district_upper(self, fields, state_fips, legisla... method state_legislative_district_lower (line 285) | def state_legislative_district_lower(self, fields, state_fips, legisla... method combined_statistical_area (line 291) | def combined_statistical_area(self, fields, csa, **kwargs): method msa (line 297) | def msa(self, fields, msa, **kwargs): class ACSClient (line 303) | class ACSClient(Client): method _switch_endpoints (line 305) | def _switch_endpoints(self, year): method tables (line 318) | def tables(self, *args, **kwargs): method get (line 322) | def get(self, *args, **kwargs): class ACS5Client (line 328) | class ACS5Client(ACSClient): method state_county_subdivision (line 336) | def state_county_subdivision(self, fields, state_fips, method state_county_tract (line 344) | def state_county_tract(self, fields, state_fips, method state_county_blockgroup (line 352) | def state_county_blockgroup(self, fields, state_fips, county_fips, method zipcode (line 363) | def zipcode(self, fields, zcta, **kwargs): method state_zipcode (line 374) | def state_zipcode(self, fields, state_fips, zcta, **kwargs): class ACS5DpClient (line 387) | class ACS5DpClient(ACS5Client): class ACS5StClient (line 392) | class ACS5StClient(ACS5Client): method _switch_endpoints (line 393) | def _switch_endpoints(self, year): class ACS3Client (line 402) | class ACS3Client(ACSClient): method state_county_subdivision (line 410) | def state_county_subdivision(self, fields, state_fips, class ACS3DpClient (line 418) | class ACS3DpClient(ACS3Client): class ACS1Client (line 423) | class ACS1Client(ACSClient): method state_county_subdivision (line 431) | def state_county_subdivision(self, fields, state_fips, class ACS1DpClient (line 439) | class ACS1DpClient(ACS1Client): class SF1Client (line 446) | class SF1Client(Client): method _switch_endpoints (line 453) | def _switch_endpoints(self, year): method tables (line 460) | def tables(self, *args, **kwargs): method get (line 464) | def get(self, *args, **kwargs): method state_county_subdivision (line 470) | def state_county_subdivision(self, fields, state_fips, method state_county_tract (line 478) | def state_county_tract(self, fields, state_fips, method state_county_blockgroup (line 486) | def state_county_blockgroup(self, fields, state_fips, county_fips, method state_msa (line 497) | def state_msa(self, fields, state_fips, msa, **kwargs): method state_csa (line 505) | def state_csa(self, fields, state_fips, csa, **kwargs): method state_district_place (line 512) | def state_district_place(self, fields, state_fips, method state_zipcode (line 521) | def state_zipcode(self, fields, state_fips, zcta, **kwargs): class PLClient (line 528) | class PLClient(Client): method _switch_endpoints (line 535) | def _switch_endpoints(self, year): method tables (line 542) | def tables(self, *args, **kwargs): method get (line 546) | def get(self, *args, **kwargs): method state_county_subdivision (line 552) | def state_county_subdivision(self, fields, state_fips, method state_county_tract (line 560) | def state_county_tract(self, fields, state_fips, method state_county_blockgroup (line 568) | def state_county_blockgroup(self, fields, state_fips, county_fips, class Census (line 579) | class Census(object): method __init__ (line 583) | def __init__(self, key, year=None, session=None): method acs (line 606) | def acs(self): FILE: census/tests/test_census.py class CensusTestCase (line 60) | class CensusTestCase(unittest.TestCase): method setUp (line 62) | def setUp(self): method client (line 65) | def client(self, name): method tearDown (line 68) | def tearDown(self): class TestUnsupportedYears (line 72) | class TestUnsupportedYears(CensusTestCase): method setUp (line 74) | def setUp(self): method test_acs5 (line 77) | def test_acs5(self): method test_acs5st (line 82) | def test_acs5st(self): method test_acs1dp (line 87) | def test_acs1dp(self): method test_sf1 (line 92) | def test_sf1(self): method test_pl (line 97) | def test_pl(self): class TestEncoding (line 103) | class TestEncoding(CensusTestCase): method test_la_canada_2015 (line 108) | def test_la_canada_2015(self): class TestEndpoints (line 132) | class TestEndpoints(CensusTestCase): method check_endpoints (line 134) | def check_endpoints(self, client_name, tests, **kwargs): method test_tables (line 149) | def test_tables(self): method test_acs5 (line 155) | def test_acs5(self): method test_acs5_previous_years (line 182) | def test_acs5_previous_years(self): method test_acs5st (line 209) | def test_acs5st(self): method test_acs1dp (line 220) | def test_acs1dp(self): method test_sf1 (line 231) | def test_sf1(self): method test_pl (line 258) | def test_pl(self): method test_more_than_50 (line 284) | def test_more_than_50(self): method test_more_than_50_not_out_of_order (line 310) | def test_more_than_50_not_out_of_order(self): method test_new_style_endpoints (line 341) | def test_new_style_endpoints(self): method test_older_sf1 (line 364) | def test_older_sf1(self):