Scenario:I have kept three json files under test folder in s3 bucket and I want to run python script using feed as argument.All the json files contain some random feed names like s2,s3,s4.When I iterate through a s3 bucket with a folder test,I want to read only that json file that contains the feed name passed by the user.
e.g:I have three feed names as s2,s3,s4 in s2.json,s3.json and s4.json file respectively.
when a user executes python upload.py -f s2,then I should be able to read only s2.json containing feed name as s2.Can you please help me with this?