-
Notifications
You must be signed in to change notification settings - Fork 3
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 #136 from SciCatProject/sftp-transfer
Add SFTPFileTransfer
- Loading branch information
Showing
33 changed files
with
1,549 additions
and
72 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
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
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,6 @@ | ||
email-validator | ||
fabric | ||
paramiko | ||
pydantic == 2 | ||
python-dateutil | ||
requests |
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# SHA1:2b55aaac9edd959da15c313d2f5f84f4e2cc5f2a | ||
# | ||
# This file is autogenerated by pip-compile-multi | ||
# To update, run: | ||
# | ||
# pip-compile-multi | ||
# | ||
annotated-types==0.5.0 | ||
# via pydantic | ||
bcrypt==4.0.1 | ||
# via paramiko | ||
certifi==2023.7.22 | ||
# via requests | ||
cffi==1.15.1 | ||
# via | ||
# cryptography | ||
# pynacl | ||
charset-normalizer==3.2.0 | ||
# via requests | ||
cryptography==41.0.3 | ||
# via paramiko | ||
decorator==5.1.1 | ||
# via fabric | ||
deprecated==1.2.14 | ||
# via fabric | ||
dnspython==2.4.2 | ||
# via email-validator | ||
email-validator==2.0.0.post2 | ||
# via -r requirements-pydantic2/base.in | ||
fabric==3.2.1 | ||
# via -r requirements-pydantic2/base.in | ||
idna==3.4 | ||
# via | ||
# email-validator | ||
# requests | ||
invoke==2.2.0 | ||
# via fabric | ||
paramiko==3.3.1 | ||
# via | ||
# -r requirements-pydantic2/base.in | ||
# fabric | ||
pycparser==2.21 | ||
# via cffi | ||
pydantic==2.0 | ||
# via -r requirements-pydantic2/base.in | ||
pydantic-core==2.0.1 | ||
# via pydantic | ||
pynacl==1.5.0 | ||
# via paramiko | ||
python-dateutil==2.8.2 | ||
# via -r requirements-pydantic2/base.in | ||
requests==2.31.0 | ||
# via -r requirements-pydantic2/base.in | ||
six==1.16.0 | ||
# via python-dateutil | ||
typing-extensions==4.7.1 | ||
# via | ||
# pydantic | ||
# pydantic-core | ||
urllib3==2.0.4 | ||
# via requests | ||
wrapt==1.15.0 | ||
# via deprecated |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# SHA1:cefe43dc5cb9d9d7430647ec8f8955a6f1576e53 | ||
# | ||
# This file is autogenerated by pip-compile-multi | ||
# To update, run: | ||
# | ||
# pip-compile-multi | ||
# | ||
-r base.txt | ||
attrs==23.1.0 | ||
# via hypothesis | ||
execnet==2.0.2 | ||
# via pytest-xdist | ||
filelock==3.12.2 | ||
# via -r requirements-pydantic2/test.in | ||
hypothesis==6.82.6 | ||
# via -r requirements-pydantic2/test.in | ||
iniconfig==2.0.0 | ||
# via pytest | ||
packaging==23.1 | ||
# via pytest | ||
pluggy==1.3.0 | ||
# via pytest | ||
pyfakefs==5.2.4 | ||
# via -r requirements-pydantic2/test.in | ||
pytest==7.4.0 | ||
# via | ||
# -r requirements-pydantic2/test.in | ||
# pytest-randomly | ||
# pytest-xdist | ||
pytest-randomly==3.15.0 | ||
# via -r requirements-pydantic2/test.in | ||
pytest-xdist==3.3.1 | ||
# via -r requirements-pydantic2/test.in | ||
pyyaml==6.0.1 | ||
# via -r requirements-pydantic2/test.in | ||
sortedcontainers==2.4.0 | ||
# via hypothesis |
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,6 @@ | ||
email-validator | ||
fabric | ||
paramiko | ||
pydantic < 2 # autodoc_pydantic is not compatible with pydantic 2 | ||
python-dateutil | ||
requests |
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
Oops, something went wrong.