Skip to content

Commit 5666238

Browse files
authored
Win PTY implementation for ssh connections in windows (#34)
1 parent 931a898 commit 5666238

File tree

2 files changed

+45
-44
lines changed

2 files changed

+45
-44
lines changed

NOTICES.md

+44-43
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ of the license associated with each component.
3232
- https://github.com/regebro/tzlocal - [Tzlocal](#Tzlocal)
3333
- https://github.com/yaml/pyyaml - [Pyyaml](#Pyyaml)
3434
- https://github.com/diyan/pywinrm - [Pywinrm](#Pywinrm)
35+
- https://github.com/andfoy/pywinpty - [Pywinpty](#Pywinpty)
3536

3637
- [SECTION 5: ISC](<SECTION 5: ISC>)
3738
- https://github.com/verigak/progress - [Progress](#Progress)
39+
- https://github.com/pexpect/pexpect - [Pexpect](#Pexpect)
3840

3941
- [SECTION 6: LGPL-2.1](<SECTION 5: LGPL-2.1>)
4042
- https://github.com/paramiko/paramiko - [Paramiko](#Paramiko)
@@ -2059,58 +2061,26 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20592061
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20602062
THE SOFTWARE.
20612063

2064+
## Pywinpty
20622065

2063-
# SECTION 5: ISC
2064-
2065-
## Progress
2066-
2067-
https://github.com/verigak/progress
2066+
https://github.com/andfoy/pywinpty
20682067

20692068
### Authors / Copyright
20702069

2071-
progress is licensed under ISC
2072-
2073-
Copyright (c) 2012 Georgios Verigakis <[email protected]>
2070+
Copyright (c) 2017 Spyder IDE
20742071

20752072
### License
20762073

2077-
Copyright (c) 2012 Georgios Verigakis <[email protected]>
2074+
MIT License
20782075

2079-
Permission to use, copy, modify, and distribute this software for any
2080-
purpose with or without fee is hereby granted, provided that the above
2081-
copyright notice and this permission notice appear in all copies.
2076+
Copyright (c) 2017 Spyder IDE
20822077

2083-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2084-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2085-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2086-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2087-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2088-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2089-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2090-
2091-
2092-
## Pyyaml
2093-
2094-
https://github.com/yaml/pyyaml
2095-
2096-
### Authors / Copyright
2097-
2098-
The PyYAML module was written by Kirill Simonov [email protected]. It is currently maintained by the YAML and Python communities.
2099-
2100-
Copyright (c) 2017-2021 Ingy döt Net
2101-
Copyright (c) 2006-2016 Kirill Simonov
2102-
2103-
### License
2104-
2105-
Copyright (c) 2017-2021 Ingy döt Net
2106-
Copyright (c) 2006-2016 Kirill Simonov
2107-
2108-
Permission is hereby granted, free of charge, to any person obtaining a copy of
2109-
this software and associated documentation files (the "Software"), to deal in
2110-
the Software without restriction, including without limitation the rights to
2111-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
2112-
of the Software, and to permit persons to whom the Software is furnished to do
2113-
so, subject to the following conditions:
2078+
Permission is hereby granted, free of charge, to any person obtaining a copy
2079+
of this software and associated documentation files (the "Software"), to deal
2080+
in the Software without restriction, including without limitation the rights
2081+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2082+
copies of the Software, and to permit persons to whom the Software is
2083+
furnished to do so, subject to the following conditions:
21142084

21152085
The above copyright notice and this permission notice shall be included in all
21162086
copies or substantial portions of the Software.
@@ -2152,6 +2122,37 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
21522122
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21532123
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21542124

2125+
## Pexpect
2126+
2127+
https://github.com/pexpect/pexpect
2128+
2129+
### Authors / Copyright
2130+
2131+
Copyright (c) 2013-2014, Pexpect development team
2132+
Copyright (c) 2012, Noah Spurrier <[email protected]>
2133+
2134+
### License
2135+
2136+
ISC LICENSE
2137+
2138+
This license is approved by the OSI and FSF as GPL-compatible.
2139+
http://opensource.org/licenses/isc-license.txt
2140+
2141+
Copyright (c) 2013-2014, Pexpect development team
2142+
Copyright (c) 2012, Noah Spurrier <[email protected]>
2143+
2144+
Permission to use, copy, modify, and/or distribute this software for any
2145+
purpose with or without fee is hereby granted, provided that the above
2146+
copyright notice and this permission notice appear in all copies.
2147+
2148+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2149+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2150+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2151+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2152+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2153+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2154+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2155+
21552156

21562157
# SECTION 6: LGPL-2.1
21572158

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ark-sdk-python"
3-
version = "2.0.5"
3+
version = "2.0.6"
44
description='Official Ark SDK / CLI for CyberArk Identity Security Platform'
55
authors = ["CyberArk <[email protected]>", "Ofir Iluz <[email protected]"]
66
readme = "README.md"

0 commit comments

Comments
 (0)