earningscall 0.0.14__tar.gz → 0.0.16__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.
- {earningscall-0.0.14 → earningscall-0.0.16}/.github/workflows/test.yml +1 -1
- earningscall-0.0.16/CHANGELOG.md +9 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/PKG-INFO +1 -2
- {earningscall-0.0.14 → earningscall-0.0.16}/pyproject.toml +1 -2
- earningscall-0.0.14/CHANGELOG.md +0 -3
- {earningscall-0.0.14 → earningscall-0.0.16}/.github/workflows/release.yml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/.gitignore +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/.python-version +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/DEVELOPMENT.md +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/LICENSE +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/README.md +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/TODO.md +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/__init__.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/api.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/company.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/errors.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/event.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/exports.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/sectors.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/symbols.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/transcript.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/earningscall/utils.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/hatch.toml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/scripts/get_all_company_transcripts.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/scripts/get_single_transcript.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/scripts/list_companies.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/setup.cfg +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/demo-symbols-v2-alpha.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/demo-symbols-v2.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/msft-company-events.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/msft-transcript-response.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/symbols-v2-missing-edge-cases.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/symbols-v2.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/symbols.txt +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/data/symbols.yaml +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_earnings_event.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_get_company_events.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_get_sp500_companies_api.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_get_transcript.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_helper.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_responses_mocking.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_sectors.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/tests/test_symbols.py +0 -0
- {earningscall-0.0.14 → earningscall-0.0.16}/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
|
38
|
+
run: pip install --upgrade hatch filelock==3.14.0 # https://github.com/pypa/virtualenv/issues/2735
|
39
39
|
|
40
40
|
- if: matrix.python-version == '3.9' && runner.os == 'Linux'
|
41
41
|
name: Lint
|
@@ -0,0 +1,9 @@
|
|
1
|
+
## Release `0.0.16` - 2024-06-12
|
2
|
+
* Bump version number.
|
3
|
+
|
4
|
+
## Release `0.0.15` - 2024-06-12
|
5
|
+
* Remove `dataclasses` as a project dependency. It is built directly into Python.
|
6
|
+
|
7
|
+
## Release `0.0.14` - 2024-06-08
|
8
|
+
* Add caching to improve client performance.
|
9
|
+
* Add `company_info` attribute in `Company` class.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: earningscall
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.16
|
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
|
@@ -45,7 +45,6 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
45
45
|
Classifier: Typing :: Typed
|
46
46
|
Requires-Python: >=3.8
|
47
47
|
Requires-Dist: dataclasses-json>=0.6.4
|
48
|
-
Requires-Dist: dataclasses>=0.6
|
49
48
|
Requires-Dist: requests-cache>=1.2.0
|
50
49
|
Requires-Dist: requests>=2.30.0
|
51
50
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "earningscall"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.16"
|
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 = [
|
@@ -8,7 +8,6 @@ authors = [
|
|
8
8
|
]
|
9
9
|
requires-python = ">= 3.8"
|
10
10
|
dependencies = [
|
11
|
-
"dataclasses>=0.6",
|
12
11
|
"dataclasses-json>=0.6.4",
|
13
12
|
"requests>=2.30.0",
|
14
13
|
"requests-cache>=1.2.0",
|
earningscall-0.0.14/CHANGELOG.md
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|