<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WebD &#187; curl</title>
	<atom:link href="http://webdlabs.com/tag/curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdlabs.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 09 May 2012 18:29:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Basic cURL wrapper function for PHP</title>
		<link>http://webdlabs.com/2011/03/basic-curl-wrapper-function-for-php/</link>
		<comments>http://webdlabs.com/2011/03/basic-curl-wrapper-function-for-php/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 16:13:31 +0000</pubDate>
		<dc:creator>Akshay</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[webscraping]]></category>

		<guid isPermaLink="false">http://webdlabs.com/?p=81</guid>
		<description><![CDATA[I recently started using snipplr.com to publish small bits of re-usable code with the community. Here&#8217;s a quick and dirty basic cURL wrapper function for PHP. cURL wrappers are often needed only when we are working on projects without a CMS or a framework, hence I have tried to keep it very basic. Comments and feedback [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started using <a href="http://snipplr.com/" target="_blank">snipplr.com</a> to publish small bits of re-usable code with the community. Here&#8217;s a <a href="http://snipplr.com/view/51161/basic-curl-wrapper-function-for-php/" target="_blank">quick and dirty basic cURL wrapper function for PHP</a>. cURL wrappers are often needed only when we are working on projects without a CMS or a framework, hence I have tried to keep it very basic. Comments and feedback is welcome.</p>
<div id="snipplr_embed_51161" class="snipplr_embed"><a href="http://snipplr.com/view/51161/basic-curl-wrapper-function-for-php/">Code snippet &#8211; Basic cURL wrapper function for PHP</a> on Snipplr</div>
<p><script type="text/javascript" src="http://snipplr.com/js/embed.js"></script><script type="text/javascript" src="http://snipplr.com/json/51161"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://webdlabs.com/2011/03/basic-curl-wrapper-function-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Search as JSON feed</title>
		<link>http://webdlabs.com/2009/06/google-search-as-json-feed/</link>
		<comments>http://webdlabs.com/2009/06/google-search-as-json-feed/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 08:15:59 +0000</pubDate>
		<dc:creator>Akshay</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://webdlabs.com/?p=56</guid>
		<description><![CDATA[Did you know that Google has an officially supported JSON feed of search results? Google half-way cancelled their SOAP API a while ago, but they now offer a parametrized URL that returns a JSON data set. Google says this REST approach is useful for &#8220;Flash developers, and those developers that have a need to access [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that Google has an officially supported JSON feed of search results? Google half-way cancelled their SOAP API a while ago, but they now offer a parametrized URL that returns a JSON data set. Google says this REST approach is useful for &#8220;Flash developers, and those developers that have a need to access the AJAX Search API from other Non-Javascript environments.&#8221; This may be even simpler to use than the SOAP API. Here&#8217;s an example query:</p>
<p><a href="http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q=Paris%20Hilton" target="_blank"><code>http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q=Paris%20Hilton</code></a></p>
<p>This URL format can also be adjusted to grab results from video search, book search and so on. While the URL has the word AJAX in the string and this is officially part of the Google AJAX Search API, this has nothing to do with AJAX per se, as the URL can be called from other environments, including the server side. All you need is a JSON library to parse the results (JSON means JavaScript Object Notation, though it also doesn&#8217;t require JavaScript). The Yahoo Search API already utilizes a similar approach, though it can return XML as well. The complete documentation of this Search API can be found on the <a href="http://code.google.com/apis/ajaxsearch/documentation/#fonje" target="_blank">Developer&#8217;s Guide of Google AJAX Search API</a> hosted on Google Code</p>
]]></content:encoded>
			<wfw:commentRss>http://webdlabs.com/2009/06/google-search-as-json-feed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bringing Web Scraping to WordPress!</title>
		<link>http://webdlabs.com/2009/05/bringing-web-scraping-to-wordpress/</link>
		<comments>http://webdlabs.com/2009/05/bringing-web-scraping-to-wordpress/#comments</comments>
		<pubDate>Sun, 24 May 2009 06:24:53 +0000</pubDate>
		<dc:creator>Akshay</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[phpquery]]></category>
		<category><![CDATA[webscraping]]></category>

		<guid isPermaLink="false">http://webdlabs.com/?p=47</guid>
		<description><![CDATA[Web scraping (or Web harvesting, Web data extraction) is a computer software technique of extracting information from websites. Web scraping focuses more on the transformation of unstructured Web content, typically in HTML format, into structured data that can be formatted and displayed or stored and analyzed. Exemplary uses of Web scraping include online price comparison, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Web_scraping" target="_blank">Web scraping</a> (or Web harvesting, Web data extraction) is a computer software technique of extracting information from websites. Web scraping focuses more on the transformation of unstructured Web content, typically in HTML format, into structured data that can be formatted and displayed or stored and analyzed. Exemplary uses of Web scraping include online price comparison, weather data monitoring, market data tracking, Web content mashup and Web data integration.</p>
<p>Imagine what you can do with all this power in your WordPress blog! Pages and posts can display realtime content from other pages, letting you create a meshup of content. This all is now possible using my <a href="http://wordpress.org/extend/plugins/wp-web-scrapper" target="_blank">WP Web Scraper plugin</a>. Its an easy to implement professional web scrapper for WordPress. This can be used to display real time data from any websites directly into your posts, pages or sidebar. Use this to include real time stock quotes, cricket or soccer scores or any other generic content. The scrapper is built using time tested libraries cURL for scrapping and phpQuery for parsing HTML. Please post all your suggestions and thoughts about this on the <a href="http://webdlabs.com/projects/wp-web-scraper/" target="_self">WP Web Scraper project page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdlabs.com/2009/05/bringing-web-scraping-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

