U.S States is a python package that provides information about states. This package is currently being built, so there is some information that will be missing at the moment.
The package can be downloaded from PyPi by using pip3 in the following way:
pip3 install unitedstates
Before we get started, we need to define if we will grant DC statehood.
# If DC will be counted as a state
from states import States_Abbreviated
states_abbreviated = States_Abbreviated(DC_Statehood=True)
# If DC will not be counted as a state
from states import States_Full_Name
states_full_name = States_Full_Name(DC_Statehood=False)States are divided by regions and divisions in accordance with the U.S Census. The following are the divisions, which are class attributes.
mountain_states = states_full_name.mountainThe following are regions, which are class attributes.
In order to retrieve all the states, the all_states attribute can be used.
These attributes can be found on both States_Full_Name() and States_Abbreviated() classes.
This package contains information about each state. Here is a list of the information that is included:
In order to retrieve this info, the get_states_info() method can be used.
from states import States
states = States()
virginia_info = states.get_state_info('Virginia')Which would return the following:
{ "official_name":"Commonwealth of Virginia",
"full_name":"Virginia",
"abbreviated":"VA",
"capital":"Richmond",
"population": 8535519,
"area_sq_km":110786,
"time_zone": ["Eastern Standard Time","GMT-5"],
"region":"South Atlantic"}
Keep in mind that some states contain more than one time zone depending on which town you are located in. At the moment, the info only contains the major ones.
You can pull all the available states by passing the function "all".
You can access the territory classes by importing them from states. Territories have the following classes:
from states import Territories_AbbreviatedBoth the Territories_Abbreviated and Territories_Full_Name contain the following attributes:
atlantic_territories = Territories_Abbreviated().atlanticAssociated_States contains the following attributes:
Uninhabitated_Territories contains the following attributes:
This package contains information about each state, here is a list of the info included:
In order to retrieve this info, the get_territory_info() method can be used.
from states import Territories
territories = Territories()
virginia_info = territories.get_territory_info('Puerto Rico')Which would return the following:
{ "official_name":"Commonwealth of Puerto Rico",
"full_name":"Puerto Rico",
"abbreviated":"PR",
"capital":"San Juan",
"population": 3193694,
"area_sq_km":9104,
"time_zone": ["Atlantic Standard Time","GMT-4"],
"region":"Atlantic"}
You can pull all the available territories by passing the function "all".
We welcome anyone who wants to contribute. Please see the contribution page for guidelines on contributing and submitting feature requests.