earningscall 1.2.0__py3-none-any.whl → 1.2.1__py3-none-any.whl
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/company.py +4 -1
- {earningscall-1.2.0.dist-info → earningscall-1.2.1.dist-info}/METADATA +15 -1
- {earningscall-1.2.0.dist-info → earningscall-1.2.1.dist-info}/RECORD +5 -5
- {earningscall-1.2.0.dist-info → earningscall-1.2.1.dist-info}/WHEEL +0 -0
- {earningscall-1.2.0.dist-info → earningscall-1.2.1.dist-info}/licenses/LICENSE +0 -0
earningscall/company.py
CHANGED
@@ -93,7 +93,10 @@ class Company:
|
|
93
93
|
if 2 <= level <= 3:
|
94
94
|
transcript.text = " ".join(map(lambda spk: spk.text, transcript.speakers))
|
95
95
|
elif level == 4:
|
96
|
-
|
96
|
+
if transcript.questions_and_answers:
|
97
|
+
transcript.text = " ".join([transcript.prepared_remarks, transcript.questions_and_answers])
|
98
|
+
else:
|
99
|
+
transcript.text = transcript.prepared_remarks
|
97
100
|
if transcript.speaker_name_map_v2:
|
98
101
|
for speaker in transcript.speakers:
|
99
102
|
speaker.speaker_info = transcript.speaker_name_map_v2.get(speaker.speaker)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: earningscall
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.1
|
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
|
@@ -273,6 +273,20 @@ for event in calendar:
|
|
273
273
|
print(f"{event.company_name} - Q{event.quarter} {event.year} on: {event.conference_date.astimezone().isoformat()} Transcript Ready: {event.transcript_ready}")
|
274
274
|
```
|
275
275
|
|
276
|
+
Output
|
277
|
+
|
278
|
+
```text
|
279
|
+
Tilray Brands, Inc. - Q2 2025 on: 2025-01-10T07:30:00-06:00 Transcript Ready: True
|
280
|
+
Walgreens Boots Alliance, Inc. - Q1 2025 on: 2025-01-10T07:30:00-06:00 Transcript Ready: True
|
281
|
+
Neogen Corporation - Q2 2025 on: 2025-01-10T07:30:00-06:00 Transcript Ready: True
|
282
|
+
E2open Parent Holdings, Inc. - Q3 2025 on: 2025-01-10T07:30:00-06:00 Transcript Ready: True
|
283
|
+
TD SYNNEX Corporation - Q4 2024 on: 2025-01-10T08:00:00-06:00 Transcript Ready: True
|
284
|
+
Delta Air Lines, Inc. - Q4 2024 on: 2025-01-10T09:00:00-06:00 Transcript Ready: True
|
285
|
+
Constellation Brands, Inc. - Q3 2025 on: 2025-01-10T09:30:00-06:00 Transcript Ready: True
|
286
|
+
PriceSmart, Inc. - Q1 2025 on: 2025-01-10T11:00:00-06:00 Transcript Ready: True
|
287
|
+
KORU Medical Systems, Inc. - Q4 2024 on: 2025-01-10T15:30:00-06:00 Transcript Ready: True
|
288
|
+
WD-40 Company - Q1 2025 on: 2025-01-10T16:00:00-06:00 Transcript Ready: True
|
289
|
+
```
|
276
290
|
|
277
291
|
## List All Companies
|
278
292
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
earningscall/__init__.py,sha256=J1cBpSRDBivNtYDB-LIMNBZu6rQ3-_1eCY6ACFHlHhE,470
|
2
2
|
earningscall/api.py,sha256=zI7XrxC73pJXZX9Qe1te-EKVS3G-0VVz5FBiuFbi-W8,7936
|
3
3
|
earningscall/calendar.py,sha256=nQcb0UsVwCDhvvcr7dqdY0PCqdVGohB7JDON7jtbRyM,725
|
4
|
-
earningscall/company.py,sha256=
|
4
|
+
earningscall/company.py,sha256=7ISobyp3gSj9f1bj53FvmzCCOBLzfqk_uVO_5maDTac,6754
|
5
5
|
earningscall/errors.py,sha256=aLgwrrpMmYThYEZjCGOhqS57a-GoC0xj2BdbtJ20sy8,490
|
6
6
|
earningscall/event.py,sha256=Jf7KPvpeaF9KkeHe46LbL_HIYLXkyHrs3psq-ZY-bkI,692
|
7
7
|
earningscall/exports.py,sha256=G9eZqX_QydfS5O039Wa0rl4Si3KrC_pGyBZ_cxfUrtI,3147
|
@@ -9,7 +9,7 @@ earningscall/sectors.py,sha256=Xd6DLkAQ_fQkC2s-N9pReC8b_M3iy77OoFftoZj9FWY,5114
|
|
9
9
|
earningscall/symbols.py,sha256=NxabgKfZZI1YwDLUwh_MlNgyfkR9VZdcU-LqkGWwi28,6521
|
10
10
|
earningscall/transcript.py,sha256=P-CeTYhE5T78SXDHFEJ0AlVUFz2XPxDMtkeiorziBiw,1007
|
11
11
|
earningscall/utils.py,sha256=Qx8KhlumUdzyBSZRKMS6vpWlb8MGZpLKA4OffJaMdCE,1032
|
12
|
-
earningscall-1.2.
|
13
|
-
earningscall-1.2.
|
14
|
-
earningscall-1.2.
|
15
|
-
earningscall-1.2.
|
12
|
+
earningscall-1.2.1.dist-info/METADATA,sha256=83qqm2w9Npv1Pkj5g0B72ht2kiLIy8kpPCKVIA3hAAg,16667
|
13
|
+
earningscall-1.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
14
|
+
earningscall-1.2.1.dist-info/licenses/LICENSE,sha256=ktEB_UcRMg2cQlX9wiDs544xWncWizwS9mEZuGsCLrM,1069
|
15
|
+
earningscall-1.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|