A package for easily working with US and state metadata
Overall
score
88%
A utility to generate formatted reports about US states using their basic metadata.
@generates
def generate_state_report(state_identifier: str) -> str:
"""
Generate a formatted report for a single state.
Args:
state_identifier: State abbreviation, name, or FIPS code
Returns:
A formatted string with state name, capital, and statehood year
"""
pass
def generate_summary_report(state_identifiers: list) -> str:
"""
Generate a multi-line summary report for multiple states.
Args:
state_identifiers: List of state abbreviations, names, or FIPS codes
Returns:
A multi-line string with one report per state
"""
pass
def find_oldest_state(state_identifiers: list) -> tuple:
"""
Find the oldest state from a list of identifiers.
Args:
state_identifiers: List of state abbreviations, names, or FIPS codes
Returns:
A tuple of (state_name, statehood_year) for the oldest state
"""
passProvides US state and territory metadata including capital cities and statehood years.
Install with Tessl CLI
npx tessl i tessl/pypi-usdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10