-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from Robert-Zacchigna/master
Minor fix to Accounts "list_transactions" and specifcy working urllib3 version
- Loading branch information
Showing
9 changed files
with
866 additions
and
834 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
"""Alerts - ETrade Alerts API | ||
""" | ||
import logging | ||
|
||
import xmltodict | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pyetrade" | ||
version = "2.0.1" | ||
version = "2.1.0" | ||
description = "eTrade API wrapper" | ||
authors = ["Jesse Cooper <[email protected]>"] | ||
license = "GPL-3.0" | ||
|
@@ -13,6 +13,7 @@ requests = "^2.31.0" | |
requests-oauthlib = "^2.0.0" | ||
xmltodict = "^0.13.0" | ||
jxmlease = "^1.0.3" | ||
urllib3 = "1.26.19" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^24.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" | ||
charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.10 ; python_version >= "3.9" and python_version < "4.0" | ||
jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" | ||
oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests==2.31.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" | ||
six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" | ||
urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4.0" | ||
urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" | ||
xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,96 @@ | ||
alabaster==0.7.16 ; python_version >= "3.9" and python_version < "4.0" | ||
astroid==3.1.0 ; python_version >= "3.9" and python_version < "4.0" | ||
babel==2.14.0 ; python_version >= "3.9" and python_version < "4.0" | ||
black==24.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
build==1.2.1 ; python_version >= "3.9" and python_version < "4.0" | ||
astroid==3.3.5 ; python_version >= "3.9" and python_version < "4.0" | ||
babel==2.16.0 ; python_version >= "3.9" and python_version < "4.0" | ||
black==24.10.0 ; python_version >= "3.9" and python_version < "4.0" | ||
build==1.2.2.post1 ; python_version >= "3.9" and python_version < "4.0" | ||
bumpversion==0.5.3 ; python_version >= "3.9" and python_version < "4.0" | ||
cachecontrol[filecache]==0.14.0 ; python_version >= "3.9" and python_version < "4.0" | ||
cachetools==5.3.3 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
cffi==1.16.0 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") | ||
cachetools==5.5.0 ; python_version >= "3.9" and python_version < "4.0" | ||
certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" | ||
cffi==1.17.1 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") | ||
cfgv==3.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
chardet==5.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4.0" | ||
charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
cleo==2.1.0 ; python_version >= "3.9" and python_version < "4.0" | ||
click==8.1.7 ; python_version >= "3.9" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" | ||
coverage==7.4.4 ; python_version >= "3.9" and python_version < "4.0" | ||
coverage[toml]==7.4.4 ; python_version >= "3.9" and python_version < "4.0" | ||
coverage==7.6.4 ; python_version >= "3.9" and python_version < "4.0" | ||
coverage[toml]==7.6.4 ; python_version >= "3.9" and python_version < "4.0" | ||
crashtest==0.4.1 ; python_version >= "3.9" and python_version < "4.0" | ||
cryptography==42.0.5 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" | ||
dill==0.3.8 ; python_version >= "3.9" and python_version < "4.0" | ||
distlib==0.3.8 ; python_version >= "3.9" and python_version < "4.0" | ||
docutils==0.21.1 ; python_version >= "3.9" and python_version < "4.0" | ||
cryptography==43.0.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" | ||
dill==0.3.9 ; python_version >= "3.9" and python_version < "4.0" | ||
distlib==0.3.9 ; python_version >= "3.9" and python_version < "4.0" | ||
docutils==0.21.2 ; python_version >= "3.9" and python_version < "4.0" | ||
dulwich==0.21.7 ; python_version >= "3.9" and python_version < "4.0" | ||
exceptiongroup==1.2.1 ; python_version >= "3.9" and python_version < "3.11" | ||
fastjsonschema==2.19.1 ; python_version >= "3.9" and python_version < "4.0" | ||
filelock==3.13.4 ; python_version >= "3.9" and python_version < "4.0" | ||
flake8==7.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
identify==2.5.35 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.7 ; python_version >= "3.9" and python_version < "4.0" | ||
exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" | ||
fastjsonschema==2.20.0 ; python_version >= "3.9" and python_version < "4.0" | ||
filelock==3.16.1 ; python_version >= "3.9" and python_version < "4.0" | ||
flake8==7.1.1 ; python_version >= "3.9" and python_version < "4.0" | ||
identify==2.6.1 ; python_version >= "3.9" and python_version < "4.0" | ||
idna==3.10 ; python_version >= "3.9" and python_version < "4.0" | ||
imagesize==1.4.1 ; python_version >= "3.9" and python_version < "4.0" | ||
importlib-metadata==7.1.0 ; python_version >= "3.9" and python_version < "3.12" | ||
importlib-metadata==8.5.0 ; python_version >= "3.9" and python_version < "3.12" | ||
iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
installer==0.7.0 ; python_version >= "3.9" and python_version < "4.0" | ||
isort==5.13.2 ; python_version >= "3.9" and python_version < "4.0" | ||
jaraco-classes==3.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
jeepney==0.8.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" | ||
jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4.0" | ||
jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4.0" | ||
jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" | ||
keyring==24.3.1 ; python_version >= "3.9" and python_version < "4.0" | ||
markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4.0" | ||
markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0" | ||
mccabe==0.7.0 ; python_version >= "3.9" and python_version < "4.0" | ||
more-itertools==10.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
msgpack==1.0.8 ; python_version >= "3.9" and python_version < "4.0" | ||
more-itertools==10.5.0 ; python_version >= "3.9" and python_version < "4.0" | ||
msgpack==1.1.0 ; python_version >= "3.9" and python_version < "4.0" | ||
mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
nodeenv==1.8.0 ; python_version >= "3.9" and python_version < "4.0" | ||
nodeenv==1.9.1 ; python_version >= "3.9" and python_version < "4.0" | ||
oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" | ||
packaging==24.0 ; python_version >= "3.9" and python_version < "4.0" | ||
packaging==24.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pexpect==4.9.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pkginfo==1.10.0 ; python_version >= "3.9" and python_version < "4.0" | ||
platformdirs==4.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pluggy==1.4.0 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry-core==1.9.0 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry-plugin-export==1.7.1 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry==1.8.2 ; python_version >= "3.9" and python_version < "4.0" | ||
pre-commit==3.7.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pkginfo==1.11.2 ; python_version >= "3.9" and python_version < "4.0" | ||
platformdirs==4.3.6 ; python_version >= "3.9" and python_version < "4.0" | ||
pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry-core==1.9.1 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry-plugin-export==1.8.0 ; python_version >= "3.9" and python_version < "4.0" | ||
poetry==1.8.4 ; python_version >= "3.9" and python_version < "4.0" | ||
pre-commit==3.8.0 ; python_version >= "3.9" and python_version < "4.0" | ||
ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pycodestyle==2.11.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pycodestyle==2.12.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pycparser==2.22 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") | ||
pyflakes==3.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pygments==2.17.2 ; python_version >= "3.9" and python_version < "4.0" | ||
pylint==3.1.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pyproject-api==1.6.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pyproject-hooks==1.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pygments==2.18.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pylint==3.3.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pyproject-api==1.8.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pyproject-hooks==1.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pytest-mock==3.14.0 ; python_version >= "3.9" and python_version < "4.0" | ||
pytest==8.1.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pytest==8.3.3 ; python_version >= "3.9" and python_version < "4.0" | ||
python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" | ||
pywin32-ctypes==0.2.2 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" | ||
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4.0" | ||
rapidfuzz==3.8.1 ; python_version >= "3.9" and python_version < "4.0" | ||
pywin32-ctypes==0.2.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" | ||
pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4.0" | ||
rapidfuzz==3.10.1 ; python_version >= "3.9" and python_version < "4.0" | ||
requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests-toolbelt==1.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests==2.31.0 ; python_version >= "3.9" and python_version < "4.0" | ||
requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" | ||
secretstorage==3.3.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" | ||
setuptools==69.5.1 ; python_version >= "3.9" and python_version < "4.0" | ||
shellingham==1.5.4 ; python_version >= "3.9" and python_version < "4.0" | ||
six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" | ||
snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinx==7.3.6 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-applehelp==1.0.8 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-devhelp==1.0.6 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-htmlhelp==2.0.5 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinx==7.4.7 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-applehelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-devhelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-htmlhelp==2.1.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-qthelp==1.0.7 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-serializinghtml==1.1.10 ; python_version >= "3.9" and python_version < "4.0" | ||
tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" | ||
tomlkit==0.12.4 ; python_version >= "3.9" and python_version < "4.0" | ||
tox==4.14.2 ; python_version >= "3.9" and python_version < "4.0" | ||
trove-classifiers==2024.4.10 ; python_version >= "3.9" and python_version < "4.0" | ||
typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "3.11" | ||
urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4.0" | ||
virtualenv==20.25.3 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-qthelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
sphinxcontrib-serializinghtml==2.0.0 ; python_version >= "3.9" and python_version < "4.0" | ||
tomli==2.0.2 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" | ||
tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "4.0" | ||
tox==4.23.2 ; python_version >= "3.9" and python_version < "4.0" | ||
trove-classifiers==2024.10.21.16 ; python_version >= "3.9" and python_version < "4.0" | ||
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11" | ||
urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" | ||
virtualenv==20.27.0 ; python_version >= "3.9" and python_version < "4.0" | ||
xattr==1.1.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "darwin" | ||
xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" | ||
zipp==3.18.1 ; python_version >= "3.9" and python_version < "3.12" | ||
zipp==3.20.2 ; python_version >= "3.9" and python_version < "3.12" |