forked from mvantellingen/python-zeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
570c623
commit a31583a
Showing
10 changed files
with
44 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
from zeep.client import AsyncClient as AsyncClient, CachingClient as CachingClient, Client as Client # noqa | ||
from zeep.plugins import Plugin as Plugin # noqa | ||
from zeep.settings import Settings as Settings # noqa | ||
from zeep.transports import Transport as Transport # noqa | ||
from zeep.xsd.valueobjects import AnyObject as AnyObject # noqa | ||
from zeep.client import AsyncClient, CachingClient, Client | ||
from zeep.plugins import Plugin | ||
from zeep.settings import Settings | ||
from zeep.transports import Transport | ||
from zeep.xsd.valueobjects import AnyObject | ||
|
||
__version__ = "4.1.0" | ||
__all__ = [ | ||
"AsyncClient", | ||
"CachingClient", | ||
"Client", | ||
"Plugin", | ||
"Settings", | ||
"Transport", | ||
"AnyObject", | ||
] |
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,2 +1,4 @@ | ||
from .http import HttpGetBinding as HttpGetBinding, HttpPostBinding as HttpPostBinding # noqa | ||
from .soap import Soap11Binding as Soap11Binding, Soap12Binding as Soap12Binding # noqa | ||
from .http import HttpGetBinding, HttpPostBinding | ||
from .soap import Soap11Binding, Soap12Binding | ||
|
||
__all__ = ["HttpGetBinding", "HttpPostBinding", "Soap11Binding", "Soap12Binding"] |
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,3 +1,11 @@ | ||
from .compose import Compose as Compose # noqa | ||
from .signature import BinarySignature as BinarySignature, MemorySignature as MemorySignature, Signature as Signature # noqa | ||
from .username import UsernameToken as UsernameToken # noqa | ||
from .compose import Compose | ||
from .signature import BinarySignature, MemorySignature, Signature | ||
from .username import UsernameToken | ||
|
||
__all__ = [ | ||
"Compose", | ||
"BinarySignature", | ||
"MemorySignature", | ||
"Signature", | ||
"UsernameToken", | ||
] |
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