def get_docref_files()

in DocRefParser.py [0:0]


def get_docref_files():
    response = s3_client.list_objects_v2(
        Bucket=args['bucket'],
        Prefix=args['prefix']
    )
    print(response)
    for file in response['Contents']:
        print(file['Key'])
        download_docref_files(file['Key'])