main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
998 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | # This program is free software; you can redistribute it and/or modify |
---|
4 | # it under the terms of the GNU Lesser General Public License as published by |
---|
5 | # the Free Software Foundation; either version 3, or (at your option) any |
---|
6 | # later version. |
---|
7 | # |
---|
8 | # This program is distributed in the hope that it will be useful, but |
---|
9 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY |
---|
10 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
---|
11 | # for more details. |
---|
12 | |
---|
13 | """Pythonic simple SOAP Client plugins""" |
---|
14 | |
---|
15 | |
---|
16 | from __future__ import unicode_literals |
---|
17 | import sys |
---|
18 | if sys.version > '3': |
---|
19 | basestring = unicode = str |
---|
20 | |
---|
21 | import datetime |
---|
22 | from decimal import Decimal |
---|
23 | import os |
---|
24 | import logging |
---|
25 | import hashlib |
---|
26 | import warnings |
---|
27 | |
---|
28 | |
---|
29 | from . import __author__, __copyright__, __license__, __version__ |
---|
30 | |
---|
31 | |
---|
32 | class WSSE: |
---|
33 | |
---|
34 | def preprocess(self, request): |
---|
35 | header = request('Header') |
---|
36 | |
---|
37 | |
---|
38 | def postprocess(response): |
---|
39 | return response |
---|
Note: See
TracBrowser
for help on using the repository browser.