This file contains 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
# District - Bangalore Urban, Date - Today's date. You can modify it as per your requirement. | |
uri = URI.parse("https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByDistrict?district_id=363&date=#{Date.today.strftime('%d-%m-%Y')}") | |
results = Net::HTTP.get(uri) | |
results = JSON.parse(result).with_indifferent_access | |
availability = {} | |
result[:centers].each do |center| | |
# 1st condition - Checking Age | |
sessions = center[:sessions].select{ |c| c[:min_age_limit] == 18 } |