From 3f1816a6201ffc6e95a7fa0116264f48c00f2a36 Mon Sep 17 00:00:00 2001 From: EarningsCall Date: Fri, 18 Jul 2025 20:56:12 -0500 Subject: [PATCH] Update README with slides example. --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9e28a8..bc99639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Release `1.3.1` - 2025-07-18 + +* Update README.md with new slide deck download example. + ## Release `1.3.0` - 2025-07-17 * Add `download_slide_deck` function to the `Company` class. diff --git a/README.md b/README.md index c1de2b6..a3f9f37 100644 --- a/README.md +++ b/README.md @@ -214,9 +214,9 @@ print(f"Downloaded audio file to: {audio_file}") ```python from earningscall import get_company -company = get_company("aapl") # Lookup Apple, Inc by its ticker symbol, "AAPL" +company = get_company("MSFT") # Lookup Microsoft by its ticker symbol, "MSFT" -slide_deck_filename = company.download_slide_deck(year=2021, quarter=3, file_name="Apple-Q3-2021-Slides.pdf") +slide_deck_filename = company.download_slide_deck(year=2025, quarter=1, file_name="Microsoft-Q1-2025-Slides.pdf") print(f"Downloaded slide deck to: {slide_deck_filename}") ``` diff --git a/pyproject.toml b/pyproject.toml index 7b28d81..798b692 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "earningscall" -version = "1.3.0" +version = "1.3.1" description = "The EarningsCall Python library provides convenient access to the EarningsCall API. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses." readme = "README.md" authors = [{ name = "EarningsCall", email = "dev@earningscall.biz" }]