tessl install tessl/pypi-us@3.2.0A package for easily working with US and state metadata
Agent Success
Agent success rate when using this tile
88%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.24x
Baseline
Agent success rate without this tile
71%
A simple utility that displays United States information and calculates the number of days until the next Independence Day celebration.
@generates
def get_us_info():
"""
Returns a dictionary containing US metadata.
Returns:
dict: A dictionary with keys 'name', 'abbreviation', and 'birthday'
where birthday is a date object representing July 4, 1776.
"""
pass
def days_until_independence_day(from_date):
"""
Calculates the number of days from the given date until the next Independence Day.
Args:
from_date: A date object representing the starting date.
Returns:
int: The number of days until the next July 4th (0 if the date is July 4th).
"""
passProvides United States metadata including the country's name, abbreviation, and founding date.
@satisfied-by