reportify-sdk 0.2.3__tar.gz → 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reportify-sdk
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Python SDK for Reportify API - Financial data and document search
5
5
  Author-email: Reportify <support@reportify.cn>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "reportify-sdk"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "Python SDK for Reportify API - Financial data and document search"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -353,7 +353,7 @@ class StockModule:
353
353
  def earnings_calendar(
354
354
  self,
355
355
  *,
356
- area: Literal["us", "hk", "cn"] = "us",
356
+ market: Literal["us", "hk", "cn"] = "us",
357
357
  start_date: str | None = None,
358
358
  end_date: str | None = None,
359
359
  symbol: str | None = None,
@@ -362,7 +362,7 @@ class StockModule:
362
362
  Get earnings announcement calendar
363
363
 
364
364
  Args:
365
- area: Market area ("us", "hk", "cn")
365
+ market: Stock market ("us", "hk", "cn")
366
366
  start_date: Start date (YYYY-MM-DD)
367
367
  end_date: End date (YYYY-MM-DD)
368
368
  symbol: Filter by specific symbol
@@ -370,7 +370,7 @@ class StockModule:
370
370
  Returns:
371
371
  DataFrame with earnings calendar data
372
372
  """
373
- data: dict[str, Any] = {"area": area}
373
+ data: dict[str, Any] = {"market": market}
374
374
  if start_date:
375
375
  data["start_date"] = start_date
376
376
  if end_date:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reportify-sdk
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Python SDK for Reportify API - Financial data and document search
5
5
  Author-email: Reportify <support@reportify.cn>
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes