require 'excon'

streamer = lambda do |chunk, remaining_bytes, total_bytes|
    puts chunk
end

res = Excon.get(
  "http://busl.herokuapp.com/streams/#{ARGV[0]}", 
  response_block: streamer
)

puts res.inspect