<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Web scraping: R vs python	</title>
	<atom:link href="https://gerinberg.com/2016/02/09/web-scraping-r-vs-python/feed/" rel="self" type="application/rss+xml" />
	<link>https://gerinberg.com/2016/02/09/web-scraping-r-vs-python/</link>
	<description>data science developer</description>
	<lastBuildDate>Thu, 27 Dec 2018 19:08:15 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>
		By: Mokhtar Ebrahim		</title>
		<link>https://gerinberg.com/2016/02/09/web-scraping-r-vs-python/#comment-126</link>

		<dc:creator><![CDATA[Mokhtar Ebrahim]]></dc:creator>
		<pubDate>Thu, 27 Dec 2018 19:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://inbergict.nl/blog/?p=78#comment-126</guid>

					<description><![CDATA[Scraping the  web with Python is much easier.
Thanks for the tips.]]></description>
			<content:encoded><![CDATA[<p>Scraping the  web with Python is much easier.<br />
Thanks for the tips.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ger		</title>
		<link>https://gerinberg.com/2016/02/09/web-scraping-r-vs-python/#comment-6</link>

		<dc:creator><![CDATA[Ger]]></dc:creator>
		<pubDate>Tue, 24 May 2016 16:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://inbergict.nl/blog/?p=78#comment-6</guid>

					<description><![CDATA[nice Maarten! I should learn Ruby:-)]]></description>
			<content:encoded><![CDATA[<p>nice Maarten! I should learn Ruby:-)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Maarten		</title>
		<link>https://gerinberg.com/2016/02/09/web-scraping-r-vs-python/#comment-5</link>

		<dc:creator><![CDATA[Maarten]]></dc:creator>
		<pubDate>Mon, 23 May 2016 10:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://inbergict.nl/blog/?p=78#comment-5</guid>

					<description><![CDATA[Nice. Let me just add a ruby example (my favourite ;) ), using the nokogiri library:

&lt;code&gt;
require &#039;nokogiri&#039;
require &#039;open-uri&#039;

url = &quot;http://live.ultimate.dk/desktop/front/?eventid=2021049&#038;language=nl&quot;
data = Nokogiri::HTML(open(url))

data.css(&quot;table.leaderboard_table_results tr&quot;).each do &#124;row&#124;
  tds = row.css(&quot;td&quot;)
  p tds[4].text
  p tds[10].text
end
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Nice. Let me just add a ruby example (my favourite 😉 ), using the nokogiri library:</p>
<p><code><br />
require 'nokogiri'<br />
require 'open-uri'</p>
<p>url = "http://live.ultimate.dk/desktop/front/?eventid=2021049&amp;language=nl"<br />
data = Nokogiri::HTML(open(url))</p>
<p>data.css("table.leaderboard_table_results tr").each do |row|<br />
  tds = row.css("td")<br />
  p tds[4].text<br />
  p tds[10].text<br />
end<br />
</code></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
