<?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: Scrape Advertisements from Google Search Results with Python</title>
	<atom:link href="http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/</link>
	<description>Entrepreneurship in the 21st Centruy</description>
	<lastBuildDate>Sat, 21 Jan 2012 09:19:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Columbus OH Homes for sale</title>
		<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/comment-page-1/#comment-17290</link>
		<dc:creator>Columbus OH Homes for sale</dc:creator>
		<pubDate>Thu, 20 May 2010 18:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.halotis.com/?p=494#comment-17290</guid>
		<description>I&#039;m so excited to run into this stuff. I am just starting out internet marketing for my company and that&#039;s the thing you know, finding out what actually is ALREADY working. There&#039;s so much guestimation and clutter online with all the &quot;gurus&quot; and ebooks. It&#039;s nice to see a practical thing that just shows you what works plain and simple so you can copy it. I&quot;m not really sure about how this code works or how to use it though. should I hire an outsourcer or how does it get implemented? I mean, obviously I can copy the code, but, lol, I just don&#039;t know what to PASTE it to! (sorry, im such a NUB).</description>
		<content:encoded><![CDATA[<p>I&#8217;m so excited to run into this stuff. I am just starting out internet marketing for my company and that&#8217;s the thing you know, finding out what actually is ALREADY working. There&#8217;s so much guestimation and clutter online with all the &#8220;gurus&#8221; and ebooks. It&#8217;s nice to see a practical thing that just shows you what works plain and simple so you can copy it. I&#8221;m not really sure about how this code works or how to use it though. should I hire an outsourcer or how does it get implemented? I mean, obviously I can copy the code, but, lol, I just don&#8217;t know what to PASTE it to! (sorry, im such a NUB).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/comment-page-1/#comment-17243</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 21 Jan 2010 11:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.halotis.com/?p=494#comment-17243</guid>
		<description>Thanks Matt, got it working...</description>
		<content:encoded><![CDATA[<p>Thanks Matt, got it working&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Warren</title>
		<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/comment-page-1/#comment-17241</link>
		<dc:creator>Matt Warren</dc:creator>
		<pubDate>Wed, 20 Jan 2010 23:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.halotis.com/?p=494#comment-17241</guid>
		<description>oops guess I missed that part.    Here&#039;s the SQL that I used to create the tables:


CREATE  TABLE  IF NOT EXISTS &quot;main&quot;.&quot;AdTable&quot; (&quot;adID&quot; INTEGER PRIMARY KEY  AUTOINCREMENT  NOT NULL , &quot;title&quot; VARCHAR, &quot;line1&quot; VARCHAR, &quot;line2&quot; VARCHAR, &quot;site&quot; VARCHAR, &quot;destination&quot; VARCHAR NOT NULL , &quot;phraseID&quot; INTEGER NOT NULL )

CREATE  TABLE  IF NOT EXISTS &quot;main&quot;.&quot;ShowTime&quot; (&quot;adID&quot; INTEGER PRIMARY KEY  NOT NULL , &quot;date&quot; DATETIME, &quot;time&quot; DATETIME, &quot;position&quot; INTEGER)

CREATE  TABLE  IF NOT EXISTS &quot;main&quot;.&quot;KeywordList&quot; (&quot;phraseID&quot; INTEGER PRIMARY KEY  NOT NULL , &quot;keywordPhrase&quot; VARCHAR)

CREATE  TABLE  IF NOT EXISTS &quot;main&quot;.&quot;CPCEstimate&quot; (&quot;phraseID&quot; INTEGER NOT NULL , &quot;date&quot; DATETIME NOT NULL , &quot;cpc&quot; DOUBLE, PRIMARY KEY (&quot;phraseID&quot;, &quot;date&quot;))</description>
		<content:encoded><![CDATA[<p>oops guess I missed that part.    Here&#8217;s the SQL that I used to create the tables:</p>
<p>CREATE  TABLE  IF NOT EXISTS &#8220;main&#8221;.&#8221;AdTable&#8221; (&#8220;adID&#8221; INTEGER PRIMARY KEY  AUTOINCREMENT  NOT NULL , &#8220;title&#8221; VARCHAR, &#8220;line1&#8243; VARCHAR, &#8220;line2&#8243; VARCHAR, &#8220;site&#8221; VARCHAR, &#8220;destination&#8221; VARCHAR NOT NULL , &#8220;phraseID&#8221; INTEGER NOT NULL )</p>
<p>CREATE  TABLE  IF NOT EXISTS &#8220;main&#8221;.&#8221;ShowTime&#8221; (&#8220;adID&#8221; INTEGER PRIMARY KEY  NOT NULL , &#8220;date&#8221; DATETIME, &#8220;time&#8221; DATETIME, &#8220;position&#8221; INTEGER)</p>
<p>CREATE  TABLE  IF NOT EXISTS &#8220;main&#8221;.&#8221;KeywordList&#8221; (&#8220;phraseID&#8221; INTEGER PRIMARY KEY  NOT NULL , &#8220;keywordPhrase&#8221; VARCHAR)</p>
<p>CREATE  TABLE  IF NOT EXISTS &#8220;main&#8221;.&#8221;CPCEstimate&#8221; (&#8220;phraseID&#8221; INTEGER NOT NULL , &#8220;date&#8221; DATETIME NOT NULL , &#8220;cpc&#8221; DOUBLE, PRIMARY KEY (&#8220;phraseID&#8221;, &#8220;date&#8221;))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/comment-page-1/#comment-17240</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 20 Jan 2010 07:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.halotis.com/?p=494#comment-17240</guid>
		<description>I am beginer with Python..., thanks for the code!

I am getting halotis.com in a search results when I do search for a terms with Python in them. This is good site and some good info here.

Could you please describe how to create the database to work with this code please? When I try to run it, I am getting error - no KeywordList table..., when I create that table I am getting error - No phraseID something... and so on.
For a newbie it is very hard (impossible?) to recreate this to working code.

Could you help please?

Regards
Robert</description>
		<content:encoded><![CDATA[<p>I am beginer with Python&#8230;, thanks for the code!</p>
<p>I am getting halotis.com in a search results when I do search for a terms with Python in them. This is good site and some good info here.</p>
<p>Could you please describe how to create the database to work with this code please? When I try to run it, I am getting error &#8211; no KeywordList table&#8230;, when I create that table I am getting error &#8211; No phraseID something&#8230; and so on.<br />
For a newbie it is very hard (impossible?) to recreate this to working code.</p>
<p>Could you help please?</p>
<p>Regards<br />
Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vancouver Movers</title>
		<link>http://www.halotis.com/2009/07/13/parse-advertisements-from-google-search-results-with-python/comment-page-1/#comment-15354</link>
		<dc:creator>Vancouver Movers</dc:creator>
		<pubDate>Tue, 14 Jul 2009 23:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.halotis.com/?p=494#comment-15354</guid>
		<description>This is a very interesting technique, one that I had not thought of before. I can see how it can really be useful if you are niche hunting or even trying to figure out the best ad phrasing for your specific keywords. I&#039;m going to have to look into this more, it can really yield some very profitable results. Thanks for sharing this technique and the code!</description>
		<content:encoded><![CDATA[<p>This is a very interesting technique, one that I had not thought of before. I can see how it can really be useful if you are niche hunting or even trying to figure out the best ad phrasing for your specific keywords. I&#8217;m going to have to look into this more, it can really yield some very profitable results. Thanks for sharing this technique and the code!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

