US state meta information and other fun stuff
Project description
US: The Greatest Package in the World
A package for easily working with US and state metadata.
all US states and territories
postal abbreviations
Associated Press style abbreviations
FIPS codes
capitals
years of statehood
time zones
phonetic state name lookup
is contiguous or continental
URLs to shapefiles for state, census, congressional districts, counties, and census tracts
Installation
As per usual:
pip install us
Features
Easy access to state information:
>>> import us >>> us.states.MD <State:Maryland> >>> us.states.MD.fips u'24' >>> us.states.MD.name u'Maryland' >>> us.states.MD.is_contiguous True
Includes territories too:
>>> us.states.VI.name u'Virgin Islands' >>> us.states.VI.is_territory True >>> us.states.MD.is_territory False
List of all (actual) states:
>>> us.states.STATES [<State:Alabama>, <State:Alaska>, <State:Arizona>, <State:Arkansas>,... >>> us.states.TERRITORIES [<State:American Samoa>, <State:Guam>, <State:Northern Mariana Islands>,...
And the whole shebang, if you want it:
>>> us.states.STATES_AND_TERRITORIES [<State:Alabama>, <State:Alaska>, <State:American Samoa>,...
For convenience, STATES, TERRITORIES, and STATES_AND_TERRITORIES can be accessed directly from the us module:
>>> us.states.STATES [<State:Alabama>, <State:Alaska>, <State:Arizona>, <State:Arkansas>,... >>> us.STATES [<State:Alabama>, <State:Alaska>, <State:Arizona>, <State:Arkansas>,...
There’s also a list of obsolete territories:
>>> us.states.OBSOLETE [<State:Dakota>, <State:Orleans>, <State:Philippine Islands>]
The state lookup method allows matching by FIPS code, abbreviation, and name:
>>> us.states.lookup('24') <State:Maryland> >>> us.states.lookup('MD') <State:Maryland> >>> us.states.lookup('md') <State:Maryland> >>> us.states.lookup('maryland') <State:Maryland>
Get useful information:
>>> state = us.states.lookup('maryland') >>> state.abbr u'MD'
And for those days that you just can’t remember how to spell Mississippi, we’ve got phonetic name matching too:
>>> us.states.lookup('misisipi') <State:Mississippi>
Shapefiles
You want shapefiles too? Gotcha covered.
>>> shpurls = us.states.MD.shapefile_urls() >>> for region, url in shpurls.items(): ... print "%s: %s" % (region, url) ... county: http://www2.census.gov/geo/tiger/TIGER2010/COUNTY/2010/tl_2010_24_county10.zip state: http://www2.census.gov/geo/tiger/TIGER2010/STATE/2010/tl_2010_24_state10.zip cd: http://www2.census.gov/geo/tiger/TIGER2010/CD/111/tl_2010_24_cd111.zip zcta: http://www2.census.gov/geo/tiger/TIGER2010/ZCTA5/2010/tl_2010_24_zcta510.zip tract: http://www2.census.gov/geo/tiger/TIGER2010/TRACT/2010/tl_2010_24_tract10.zip
The shapefile_urls() method on the State object generates shapefile URLs for the following regions:
state
county
congressional district
zcta
census tract
If you know what region you want, you can explicitly request it:
>>> us.states.MD.shapefile_urls('county') u'http://www2.census.gov/geo/tiger/TIGER2010/COUNTY/2010/tl_2010_24_county10.zip'
Mappings
Mappings between various state attributes are a common need. The mapping() method will generate a lookup between two specified fields.
>>> us.states.mapping('fips', 'abbr') {u'30': u'MT', u'54': u'WV', u'42': u'PA', u'48': u'TX', u'45': u'SC',... >>> us.states.mapping('abbr', 'name') {u'WA': u'Washington', u'VA': u'Virginia', u'DE': u'Delaware',...
CLI
When you need to know state information RIGHT AWAY, there’s the states script.
$ states md *** The great state of Maryland (MD) *** FIPS code: 24 other attributes: ap_abbr: Md. capital: Annapolis capital_tz: America/New_York is_obsolete: False name_metaphone: MRLNT statehood_year: 1788 time_zones: America/New_York shapefiles: blockgroup: http://www2.census.gov/geo/tiger/TIGER2010/BG/2010/tl_2010_24_bg10.zip cd: http://www2.census.gov/geo/tiger/TIGER2010/CD/111/tl_2010_24_cd111.zip county: http://www2.census.gov/geo/tiger/TIGER2010/COUNTY/2010/tl_2010_24_county10.zip state: http://www2.census.gov/geo/tiger/TIGER2010/STATE/2010/tl_2010_24_state10.zip tract: http://www2.census.gov/geo/tiger/TIGER2010/TRACT/2010/tl_2010_24_tract10.zip zcta: http://www2.census.gov/geo/tiger/TIGER2010/ZCTA5/2010/tl_2010_24_zcta510.zip block: http://www2.census.gov/geo/tiger/TIGER2010/TABBLOCK/2010/tl_2010_24_tabblock10.zip
Running Tests
CircleCI is set up to automatically run unit tests against any new commits to the repo. To run these tests yourself in a standardized, Dockerized environment, install the CircleCI CLI, and then execute the tests with:
circleci local execute --job build
Alternatively, you can run tests against only your current version of Python, using:
pytest tests
Contributing
Your contributions are welcomed!
State data is stored in an SQLite database, data.db, and pickled using the build.py script. If you modify data.db, please be sure to run the build script before submitting a pull request.
Any changes other than additions to data.db should come with appropriate tests in test.py. Also check to see if the states CLI script should be modified to accommodate your change.
Changelog
2.0.0
add support for Python 3.7 and 3.8
remove support for Python 3.4 and 3.5
remove pickled objects and database in favor of pure Python code
upgrade jellyfish to 0.7.2 to fix metaphone bug
fixes for IN, KY, ND, and NM timezones
set AZ timezone to America/Phoenix
obsolete entries are no longer included in STATES_AND_TERRITORIES
DC is no longer included in STATES, STATES_AND_TERRITORIES, STATES_CONTIGUOUS, or STATES_CONTINENTAL
1.0.0
full Python 3.6 support
use pytest
0.10.0
upgrade jellyfish to 0.5.3 to fix metaphone bug
0.9.0
add information on whether a state is contiguous and/or continental, thanks to chebee7i
0.8.0
add obsolete territories, thanks to Ben Chartoff
fix packaging error, thanks to Alexander Kulakov
0.7.1
upgrade to jellyfish 0.5.1 to fix metaphone case bug
0.7
add time zones, thanks to Paul Tagliamonte
Python 2.6 and 3.2 compatibility
0.6
add AP-style state abbreviations
use jellyfish instead of Metaphone package
update to requests v1.0.4 for tests
Python 3.3 compatibility
0.5
fix state abbreviation for Nebraska
0.4
add state capitals
add years of statehood
0.3
add mapping method to generate dicts of arbitrary fields
0.2
add command line script for quick access to state data
0.1
initial release
state names and abbreviations
FIPS codes
lookup() method
shapefile URLs for various regions
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file us-2.0.0.tar.gz
.
File metadata
- Download URL: us-2.0.0.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dea333584e4b7060dd2f8bde3736cc6c0f84da4d836e2a8e95711e1f79fb326 |
|
MD5 | e4746f11104984f11e91f52967a2ffe9 |
|
BLAKE2b-256 | 05474a64e3003053c4ad6f386a0cfced7e07b9f2a3ac786dc2032bc5fb60fdb2 |