File: code39.py

package info (click to toggle)
python-zeep 4.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: python: 15,551; makefile: 13
file content (9 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import zeep

client = zeep.Client(
    wsdl='http://www.webservicex.net/barcode.asmx?WSDL')

with client.settings(strict=True):
    response = client.service.Code39(
        '1234', 20, ShowCodeString=True, Title='ZEEP')
    print(repr(response))