1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/examples/crack.rb

20 lines
428 B
Ruby
Raw Normal View History

2011-10-05 11:28:03 -04:00
require 'rubygems'
require 'crack'
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
require 'pp'
class Rep
include HTTParty
parser(
2015-04-18 06:39:39 -04:00
proc do |body, format|
2011-10-05 11:28:03 -04:00
Crack::XML.parse(body)
end
)
end
2013-08-13 01:15:43 -04:00
pp Rep.get('http://whoismyrepresentative.com/getall_mems.php?zip=46544')
2016-11-08 09:20:36 -05:00
pp Rep.get('http://whoismyrepresentative.com/getall_mems.php', query: { zip: 46544 })