earningscall 0.0.12__tar.gz → 0.0.13__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.12 → earningscall-0.0.13}/.github/workflows/release.yml +4 -4
- {earningscall-0.0.12 → earningscall-0.0.13}/.github/workflows/test.yml +9 -4
- {earningscall-0.0.12 → earningscall-0.0.13}/PKG-INFO +2 -3
- {earningscall-0.0.12 → earningscall-0.0.13}/README.md +1 -2
- {earningscall-0.0.12 → earningscall-0.0.13}/hatch.toml +2 -1
- {earningscall-0.0.12 → earningscall-0.0.13}/pyproject.toml +1 -1
- {earningscall-0.0.12 → earningscall-0.0.13}/.gitignore +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/.python-version +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/CHANGELOG.md +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/DEVELOPMENT.md +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/LICENSE +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/TODO.md +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/__init__.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/api.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/company.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/errors.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/event.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/exports.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/sectors.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/symbols.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/transcript.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/utils.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/scripts/get_all_company_transcripts.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/scripts/get_single_transcript.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/scripts/list_companies.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/setup.cfg +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/demo-symbols-v2-alpha.yaml +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/demo-symbols-v2.yaml +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/msft-transcript-response.yaml +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols-v2.yaml +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols.txt +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols.yaml +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_earnings_event.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_get_transcript.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_helper.py +0 -0
- {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_symbols.py +0 -0
@@ -34,7 +34,7 @@ jobs:
|
|
34
34
|
- name: Build a binary wheel and sdist
|
35
35
|
run: python -m build
|
36
36
|
- name: Store the distribution packages
|
37
|
-
uses: actions/upload-artifact@
|
37
|
+
uses: actions/upload-artifact@v4
|
38
38
|
with:
|
39
39
|
name: python-package-distributions
|
40
40
|
path: dist/
|
@@ -55,7 +55,7 @@ jobs:
|
|
55
55
|
|
56
56
|
steps:
|
57
57
|
- name: Download all the dists
|
58
|
-
uses: actions/download-artifact@
|
58
|
+
uses: actions/download-artifact@v4
|
59
59
|
with:
|
60
60
|
name: python-package-distributions
|
61
61
|
path: dist/
|
@@ -76,7 +76,7 @@ jobs:
|
|
76
76
|
|
77
77
|
steps:
|
78
78
|
- name: Download all the dists
|
79
|
-
uses: actions/download-artifact@
|
79
|
+
uses: actions/download-artifact@v4
|
80
80
|
with:
|
81
81
|
name: python-package-distributions
|
82
82
|
path: dist/
|
@@ -122,7 +122,7 @@ jobs:
|
|
122
122
|
#
|
123
123
|
# steps:
|
124
124
|
# - name: Download all the dists
|
125
|
-
# uses: actions/download-artifact@
|
125
|
+
# uses: actions/download-artifact@v4
|
126
126
|
# with:
|
127
127
|
# name: python-package-distributions
|
128
128
|
# path: dist/
|
@@ -27,10 +27,10 @@ jobs:
|
|
27
27
|
python-version: ['3.9']
|
28
28
|
|
29
29
|
steps:
|
30
|
-
- uses: actions/checkout@
|
30
|
+
- uses: actions/checkout@v4
|
31
31
|
|
32
32
|
- name: Set up Python ${{ matrix.python-version }}
|
33
|
-
uses: actions/setup-python@
|
33
|
+
uses: actions/setup-python@v5
|
34
34
|
with:
|
35
35
|
python-version: ${{ matrix.python-version }}
|
36
36
|
|
@@ -43,16 +43,21 @@ jobs:
|
|
43
43
|
|
44
44
|
- name: Run tests and track code coverage
|
45
45
|
run: hatch run cov
|
46
|
+
- if: matrix.python-version == '3.9' && runner.os == 'Linux'
|
47
|
+
name: Publish Coverage to Coveralls
|
48
|
+
run: hatch run coveralls
|
49
|
+
env:
|
50
|
+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
46
51
|
|
47
52
|
run-container-matrix:
|
48
53
|
name: Container matrix on Linux
|
49
54
|
runs-on: ubuntu-latest
|
50
55
|
|
51
56
|
steps:
|
52
|
-
- uses: actions/checkout@
|
57
|
+
- uses: actions/checkout@v4
|
53
58
|
|
54
59
|
- name: Set up Python 3.10
|
55
|
-
uses: actions/setup-python@
|
60
|
+
uses: actions/setup-python@v5
|
56
61
|
with:
|
57
62
|
python-version: '3.10'
|
58
63
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: earningscall
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.13
|
4
4
|
Summary: The EarningsCall Python library.
|
5
5
|
Project-URL: Homepage, https://earningscall.biz
|
6
6
|
Project-URL: Documentation, https://github.com/EarningsCall/earningscall-python
|
@@ -59,7 +59,7 @@ pip install --upgrade earningscall
|
|
59
59
|
|
60
60
|
# Requirements
|
61
61
|
|
62
|
-
* Python 3.8+
|
62
|
+
* Python 3.8+
|
63
63
|
|
64
64
|
## Get Transcript for a Single Quarter
|
65
65
|
|
@@ -150,4 +150,3 @@ from earningscall import get_sp500_companies
|
|
150
150
|
for company in get_sp500_companies():
|
151
151
|
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
152
152
|
```
|
153
|
-
|
@@ -19,7 +19,7 @@ pip install --upgrade earningscall
|
|
19
19
|
|
20
20
|
# Requirements
|
21
21
|
|
22
|
-
* Python 3.8+
|
22
|
+
* Python 3.8+
|
23
23
|
|
24
24
|
## Get Transcript for a Single Quarter
|
25
25
|
|
@@ -110,4 +110,3 @@ from earningscall import get_sp500_companies
|
|
110
110
|
for company in get_sp500_companies():
|
111
111
|
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
112
112
|
```
|
113
|
-
|
@@ -3,6 +3,7 @@ dependencies = [
|
|
3
3
|
"coverage[toml]>=6.5",
|
4
4
|
"pytest",
|
5
5
|
"responses",
|
6
|
+
"coveralls",
|
6
7
|
]
|
7
8
|
[envs.default.scripts]
|
8
9
|
test = "pytest {args:tests}"
|
@@ -20,7 +21,7 @@ cov = [
|
|
20
21
|
type = "container"
|
21
22
|
|
22
23
|
[[envs.all.matrix]]
|
23
|
-
python = ["3.8", "3.9", "3.10", "3.11"]
|
24
|
+
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
24
25
|
|
25
26
|
[envs.lint]
|
26
27
|
detached = true
|
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
|