in utils/wheel_feeder.py [0:0]
def __init__(self, wheel_url, wheel_id, csv_file_path, cognito_user_pool_id, cognito_client_id, region_name=None):
"""
:param wheel_url: URL of the Wheel
:type wheel_url: str
:param wheel_id: Id of the Wheel which will be fed
:type wheel_id: str
:param csv_file_path: Path of the CSV File
:type csv_file_path: str
"""
self._wheel_url = wheel_url
self._wheel_id = wheel_id
self._csv_file_path = csv_file_path
self._csv_file = open(self._csv_file_path)
self._authentication = WheelFeederAuthentication(
cognito_user_pool_id,
cognito_client_id,
region_name=region_name
).build()