This file contains hidden or 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
| import sys | |
| import re | |
| state = 'file_hdr' | |
| record_name, record_value = None, '' | |
| for line in sys.stdin: | |
| line = line.rstrip('\r\n') | |
| if state == 'file_hdr' and line.strip() == '*****': |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # -*- encoding: utf-8 -*- | |
| import os, sys, re, time, traceback, csv, base64, io, zipfile | |
| import suds | |
| import suds.client | |
| from optparse import OptionParser | |
| from retry import retry | |