The Official Holiday and Event API for Python
Project description
The Official Holiday and Event API for Python
Industry-leading Holiday and Event API for Python. Over 5,000 holidays and thousands of descriptions. Trusted by the World’s leading companies. Built by developers for developers since 2011.
Supported Python Versions
Latest version of the the Holiday and Event API supports all actively-maintained Python releases and might work with older versions. It also supports PyPy versions 3.7
, 3.8
, and 3.9
.
Authentication
Access to the Holiday and Event API requires an API Key. You can get for one for FREE here, no credit card required! Note that free plans are limited. To access more data and have more requests, a paid plan is required.
Installation
The Holiday and Event API is available on PyPI:
$ python -m pip install holiday-event-api
Example
import holidays
try:
# Get a FREE API key from https://apilayer.com/marketplace/checkiday-api#pricing
client = holidays.client('<Your API Key Here>')
# Get Events for a given Date
events = client.getEvents(
# These parameters are the defaults but can be specified:
# date='today',
# timezone='America/Chicago',
# adult=False,
)
event = events.events[0]
print(f"Today is {event.name}! Find more information at: {event.url}.")
print(f"Rate limits remaining: {events.rateLimit.remainingMonth}/{events.rateLimit.limitMonth} (month).")
# Get Event Information
eventInfo = client.getEventInfo(
id=event.id,
# These parameters can be specified to calculate the range of eventInfo.Event.Occurrences
# start=2020,
# end=2030,
)
print(f"The Event's hashtags are {eventInfo.event.hashtags}.")
# Search for Events
query = "pizza day"
search = client.search(
query=query,
# These parameters are the defaults but can be specified:
# adult=False,
)
print(f"Found {len(search.events)} events, including {search.events[0].name}, that match the query '{query}'.")
except Exception as e:
print(f"There was an error: {e}")
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
Built Distribution
File details
Details for the file holiday-event-api-1.0.1.tar.gz
.
File metadata
- Download URL: holiday-event-api-1.0.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd409d5f37b05c7a76a31f68a65c731f1390156d257eb6754ee2f09f1d38ef0c |
|
MD5 | a59bbfb5a150cb4cfd796eae94ee3fec |
|
BLAKE2b-256 | 4df87285a652ec9576726db505db663d988c4c82f88c7e11c667a76d52e99dee |
File details
Details for the file holiday_event_api-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: holiday_event_api-1.0.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59836507b7eb790ad1da91078f12f97ee5c69faaeae17c25eaccf091e8c2c882 |
|
MD5 | 8d8ab8a823df9422b638f064a298ab71 |
|
BLAKE2b-256 | 0c61be6ede1480d9f861750207114208cefbe57cb09abea12783d1ef7b4d629d |