earningscall 0.0.16__tar.gz → 0.0.17__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.
Files changed (43) hide show
  1. {earningscall-0.0.16 → earningscall-0.0.17}/.github/workflows/test.yml +1 -1
  2. {earningscall-0.0.16 → earningscall-0.0.17}/PKG-INFO +2 -2
  3. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/api.py +1 -1
  4. {earningscall-0.0.16 → earningscall-0.0.17}/hatch.toml +1 -1
  5. {earningscall-0.0.16 → earningscall-0.0.17}/pyproject.toml +9 -1
  6. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_get_sp500_companies_api.py +3 -3
  7. {earningscall-0.0.16 → earningscall-0.0.17}/.github/workflows/release.yml +0 -0
  8. {earningscall-0.0.16 → earningscall-0.0.17}/.gitignore +0 -0
  9. {earningscall-0.0.16 → earningscall-0.0.17}/.python-version +0 -0
  10. {earningscall-0.0.16 → earningscall-0.0.17}/CHANGELOG.md +0 -0
  11. {earningscall-0.0.16 → earningscall-0.0.17}/DEVELOPMENT.md +0 -0
  12. {earningscall-0.0.16 → earningscall-0.0.17}/LICENSE +0 -0
  13. {earningscall-0.0.16 → earningscall-0.0.17}/README.md +0 -0
  14. {earningscall-0.0.16 → earningscall-0.0.17}/TODO.md +0 -0
  15. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/__init__.py +0 -0
  16. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/company.py +0 -0
  17. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/errors.py +0 -0
  18. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/event.py +1 -1
  19. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/exports.py +0 -0
  20. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/sectors.py +0 -0
  21. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/symbols.py +0 -0
  22. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/transcript.py +1 -1
  23. {earningscall-0.0.16 → earningscall-0.0.17}/earningscall/utils.py +0 -0
  24. {earningscall-0.0.16 → earningscall-0.0.17}/scripts/get_all_company_transcripts.py +0 -0
  25. {earningscall-0.0.16 → earningscall-0.0.17}/scripts/get_single_transcript.py +0 -0
  26. {earningscall-0.0.16 → earningscall-0.0.17}/scripts/list_companies.py +0 -0
  27. {earningscall-0.0.16 → earningscall-0.0.17}/setup.cfg +0 -0
  28. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/demo-symbols-v2-alpha.yaml +0 -0
  29. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/demo-symbols-v2.yaml +0 -0
  30. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/msft-company-events.yaml +0 -0
  31. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/msft-transcript-response.yaml +0 -0
  32. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/symbols-v2-missing-edge-cases.yaml +0 -0
  33. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/symbols-v2.yaml +0 -0
  34. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/symbols.txt +0 -0
  35. {earningscall-0.0.16 → earningscall-0.0.17}/tests/data/symbols.yaml +0 -0
  36. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_earnings_event.py +0 -0
  37. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_get_company_events.py +0 -0
  38. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_get_transcript.py +0 -0
  39. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_helper.py +0 -0
  40. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_responses_mocking.py +0 -0
  41. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_sectors.py +0 -0
  42. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_symbols.py +0 -0
  43. {earningscall-0.0.16 → earningscall-0.0.17}/tests/test_utils.py +0 -0
@@ -35,7 +35,7 @@ jobs:
35
35
  python-version: ${{ matrix.python-version }}
36
36
 
37
37
  - name: Install Hatch
38
- run: pip install --upgrade hatch filelock==3.14.0 # https://github.com/pypa/virtualenv/issues/2735
38
+ run: pip install --upgrade hatch
39
39
 
40
40
  - if: matrix.python-version == '3.9' && runner.os == 'Linux'
41
41
  name: Lint
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: earningscall
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: 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.
5
5
  Project-URL: Homepage, https://earningscall.biz
6
6
  Project-URL: Documentation, https://github.com/EarningsCall/earningscall-python
@@ -31,7 +31,7 @@ License: MIT License
31
31
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32
32
  SOFTWARE.
33
33
  License-File: LICENSE
34
- Keywords: earnings call,earnings call transcripts,earnings calls,transcripts
34
+ Keywords: earning call app,earnings call,earnings call api,earnings call app,earnings call transcript api,earnings call transcripts,earnings call transcripts api,earnings calls,earnings transcript api,listen to earnings calls,transcripts,where to listen to earnings calls
35
35
  Classifier: Development Status :: 3 - Alpha
36
36
  Classifier: Intended Audience :: Developers
37
37
  Classifier: License :: OSI Approved :: MIT License
@@ -34,7 +34,7 @@ def cache_session() -> CachedSession:
34
34
  backend="sqlite",
35
35
  cache_control=True,
36
36
  use_temp=True,
37
- ignored_parameters=['apikey'],
37
+ ignored_parameters=[],
38
38
  )
39
39
 
40
40
 
@@ -33,7 +33,7 @@ dependencies = [
33
33
  [envs.lint.scripts]
34
34
  typing = "mypy --install-types --non-interactive {args:earningscall tests}"
35
35
  style = [
36
- "ruff {args:.}",
36
+ "ruff check {args:.}",
37
37
  "black --check --diff {args:.}",
38
38
  ]
39
39
  fmt = [
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "earningscall"
3
- version = "0.0.16"
3
+ version = "0.0.17"
4
4
  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."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -16,7 +16,15 @@ license = { file = "LICENSE" }
16
16
  keywords = [
17
17
  "earnings calls",
18
18
  "earnings call",
19
+ "earnings call api",
19
20
  "earnings call transcripts",
21
+ "earnings call transcripts api",
22
+ "earnings call transcript api",
23
+ "earnings call app",
24
+ "earning call app",
25
+ "listen to earnings calls",
26
+ "where to listen to earnings calls",
27
+ "earnings transcript api",
20
28
  "transcripts",
21
29
  ]
22
30
  classifiers = [
@@ -33,7 +33,7 @@ def test_load_sp500_tickers():
33
33
  ##
34
34
  assert len(responses.calls) == 1
35
35
  assert responses.calls[0].request.url == "https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"
36
- assert cached_urls() == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=REDACTED"]
36
+ assert cached_urls() == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"]
37
37
  tickers = [ticker_symbol for ticker_symbol in sp500_raw_text.split("\n")]
38
38
  assert tickers == ["AAPL", "MSFT", "TSLA"]
39
39
  ##
@@ -44,7 +44,7 @@ def test_load_sp500_tickers():
44
44
  assert len(responses.calls) == 1
45
45
  assert responses.calls[0].request.url == "https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"
46
46
  urls = cached_urls()
47
- assert urls == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=REDACTED"]
47
+ assert urls == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"]
48
48
  tickers = [ticker_symbol for ticker_symbol in sp500_raw_text.split("\n")]
49
49
  assert tickers == ["AAPL", "MSFT", "TSLA"]
50
50
  ##
@@ -57,6 +57,6 @@ def test_load_sp500_tickers():
57
57
  assert len(responses.calls) == 2
58
58
  assert responses.calls[0].request.url == "https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"
59
59
  assert responses.calls[1].request.url == "https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"
60
- assert cached_urls() == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=REDACTED"]
60
+ assert cached_urls() == ["https://v2.api.earningscall.biz/symbols/sp500.txt?apikey=demo"]
61
61
  tickers = [ticker_symbol for ticker_symbol in sp500_raw_text.split("\n")]
62
62
  assert tickers == ["AAPL", "MSFT", "TSLA", "NEWCOMPANY"]
File without changes
File without changes
File without changes
File without changes
@@ -1,8 +1,8 @@
1
1
  import logging
2
+ from dataclasses import dataclass, field
2
3
  from datetime import datetime
3
4
  from typing import Optional
4
5
 
5
- from dataclasses import dataclass, field
6
6
  from dataclasses_json import config
7
7
  from dataclasses_json import dataclass_json
8
8
  from marshmallow import fields
@@ -1,7 +1,7 @@
1
1
  import logging
2
+ from dataclasses import dataclass, field
2
3
  from typing import Optional
3
4
 
4
- from dataclasses import dataclass, field
5
5
  from dataclasses_json import dataclass_json
6
6
 
7
7
  from earningscall.event import EarningsEvent
File without changes