earningscall 0.0.9__tar.gz → 0.0.10__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.9 → earningscall-0.0.10}/PKG-INFO +32 -12
- {earningscall-0.0.9 → earningscall-0.0.10}/README.md +10 -11
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/__init__.py +1 -1
- {earningscall-0.0.9 → earningscall-0.0.10}/pyproject.toml +2 -1
- {earningscall-0.0.9 → earningscall-0.0.10}/scripts/list_companies.py +1 -2
- earningscall-0.0.10/setup.cfg +2 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/.github/workflows/release.yml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/.gitignore +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/.python-version +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/CHANGELOG.md +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/DEVELOPMENT.md +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/LICENSE +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/TODO.md +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/api.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/company.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/errors.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/event.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/exports.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/sectors.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/symbols.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/transcript.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/earningscall/utils.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/requirements-dev.lock +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/requirements.lock +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/scripts/get_all_company_transcripts.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/scripts/get_single_transcript.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/demo-symbols-v2-alpha.yaml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/demo-symbols-v2.yaml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/msft-transcript-response.yaml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/symbols-v2.yaml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/symbols.txt +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/data/symbols.yaml +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/test_earnings_event.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/test_get_transcript.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/test_helper.py +0 -0
- {earningscall-0.0.9 → earningscall-0.0.10}/tests/test_symbols.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: earningscall
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.10
|
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
|
@@ -9,6 +9,27 @@ Project-URL: Issues, https://github.com/EarningsCall/earningscall-python/issues
|
|
9
9
|
Project-URL: Source, https://github.com/EarningsCall/earningscall-python
|
10
10
|
Project-URL: Changelog, https://github.com/EarningsCall/earningscall-python/blob/master/CHANGELOG.md
|
11
11
|
Author-email: EarningsCall <dev@earningscall.biz>
|
12
|
+
License: MIT License
|
13
|
+
|
14
|
+
Copyright (c) 2024 EarningsCall
|
15
|
+
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
18
|
+
in the Software without restriction, including without limitation the rights
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
21
|
+
furnished to do so, subject to the following conditions:
|
22
|
+
|
23
|
+
The above copyright notice and this permission notice shall be included in all
|
24
|
+
copies or substantial portions of the Software.
|
25
|
+
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
32
|
+
SOFTWARE.
|
12
33
|
License-File: LICENSE
|
13
34
|
Requires-Python: >=3.8
|
14
35
|
Requires-Dist: dataclasses-json>=0.6.4
|
@@ -92,8 +113,6 @@ Getting all transcripts for: Apple Inc...
|
|
92
113
|
...
|
93
114
|
```
|
94
115
|
|
95
|
-
|
96
|
-
|
97
116
|
## List All Companies
|
98
117
|
|
99
118
|
```python
|
@@ -103,15 +122,6 @@ for company in get_all_companies():
|
|
103
122
|
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
104
123
|
```
|
105
124
|
|
106
|
-
## List S&P 500 Companies
|
107
|
-
|
108
|
-
```python
|
109
|
-
from earningscall import get_all_companies
|
110
|
-
|
111
|
-
for company in get_all_companies():
|
112
|
-
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
113
|
-
```
|
114
|
-
|
115
125
|
By default, this library grants you access to only two companies, Apple Inc. and Microsoft, Inc.
|
116
126
|
|
117
127
|
To gain access to 5,000+ companies please [signup here](https://earningscall.biz/api-pricing) to get your API key.
|
@@ -132,3 +142,13 @@ Alternatively, you can pass in your API key as an environment variable:
|
|
132
142
|
export ECALL_API_KEY="YOUR SECRET API KEY GOES HERE"
|
133
143
|
python your-python-script.py
|
134
144
|
```
|
145
|
+
|
146
|
+
## List S&P 500 Companies
|
147
|
+
|
148
|
+
```python
|
149
|
+
from earningscall import get_sp500_companies
|
150
|
+
|
151
|
+
for company in get_sp500_companies():
|
152
|
+
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
153
|
+
```
|
154
|
+
|
@@ -74,8 +74,6 @@ Getting all transcripts for: Apple Inc...
|
|
74
74
|
...
|
75
75
|
```
|
76
76
|
|
77
|
-
|
78
|
-
|
79
77
|
## List All Companies
|
80
78
|
|
81
79
|
```python
|
@@ -85,15 +83,6 @@ for company in get_all_companies():
|
|
85
83
|
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
86
84
|
```
|
87
85
|
|
88
|
-
## List S&P 500 Companies
|
89
|
-
|
90
|
-
```python
|
91
|
-
from earningscall import get_all_companies
|
92
|
-
|
93
|
-
for company in get_all_companies():
|
94
|
-
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
95
|
-
```
|
96
|
-
|
97
86
|
By default, this library grants you access to only two companies, Apple Inc. and Microsoft, Inc.
|
98
87
|
|
99
88
|
To gain access to 5,000+ companies please [signup here](https://earningscall.biz/api-pricing) to get your API key.
|
@@ -114,3 +103,13 @@ Alternatively, you can pass in your API key as an environment variable:
|
|
114
103
|
export ECALL_API_KEY="YOUR SECRET API KEY GOES HERE"
|
115
104
|
python your-python-script.py
|
116
105
|
```
|
106
|
+
|
107
|
+
## List S&P 500 Companies
|
108
|
+
|
109
|
+
```python
|
110
|
+
from earningscall import get_sp500_companies
|
111
|
+
|
112
|
+
for company in get_sp500_companies():
|
113
|
+
print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
|
114
|
+
```
|
115
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
from typing import Optional
|
2
2
|
|
3
|
-
from earningscall.exports import get_company, get_all_companies
|
3
|
+
from earningscall.exports import get_company, get_all_companies, get_sp500_companies
|
4
4
|
from earningscall.symbols import Symbols, load_symbols
|
5
5
|
|
6
6
|
api_key: Optional[str] = None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "earningscall"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.10"
|
4
4
|
description = "The EarningsCall Python library."
|
5
5
|
readme = "README.md"
|
6
6
|
authors = [
|
@@ -12,6 +12,7 @@ dependencies = [
|
|
12
12
|
"dataclasses-json>=0.6.4",
|
13
13
|
"requests>=2.30.0",
|
14
14
|
]
|
15
|
+
license = { file = "LICENSE" }
|
15
16
|
|
16
17
|
[project.urls]
|
17
18
|
Homepage = "https://earningscall.biz"
|
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
|