fidelity-api 0.0.7__tar.gz → 0.0.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fidelity-api
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: An unofficial API for Fidelity
5
5
  Home-page: https://github.com/kennyboy106/fidelity-api
6
6
  Author: Kenneth Tang
@@ -8,6 +8,9 @@ License: GPL
8
8
  Keywords: FIDELITY,API
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
+ Requires-Dist: playwright
12
+ Requires-Dist: playwright-stealth
13
+ Requires-Dist: pyotp
11
14
 
12
15
  <a id="readme-top"></a>
13
16
  # fidelity-api
@@ -277,7 +277,8 @@ class FidelityAutomation:
277
277
  # This double wait is necessary. If you remove it, I'll kill you
278
278
  self.wait_for_loading_sign()
279
279
  self.page.wait_for_timeout(1000)
280
- self.wait_for_loading_sign()
280
+ # Sometimes this can take a while to load. Set to 2.5 minutes
281
+ self.wait_for_loading_sign(timeout=2.5*60*1000)
281
282
 
282
283
  # Download the positions as a csv #
283
284
  # See if new UI is present
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fidelity-api
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: An unofficial API for Fidelity
5
5
  Home-page: https://github.com/kennyboy106/fidelity-api
6
6
  Author: Kenneth Tang
@@ -8,6 +8,9 @@ License: GPL
8
8
  Keywords: FIDELITY,API
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
+ Requires-Dist: playwright
12
+ Requires-Dist: playwright-stealth
13
+ Requires-Dist: pyotp
11
14
 
12
15
  <a id="readme-top"></a>
13
16
  # fidelity-api
@@ -5,7 +5,7 @@ with open("README.md", "r") as f:
5
5
 
6
6
  setup(
7
7
  name="fidelity-api",
8
- version="0.0.7",
8
+ version="0.0.8",
9
9
  author="Kenneth Tang",
10
10
  description="An unofficial API for Fidelity",
11
11
  long_description=long_description,
File without changes
File without changes
File without changes