<?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: How to Fetch Domain Whois Data with Sockets in Python	</title>
	<atom:link href="https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Thu, 06 Aug 2020 14:07:19 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: Suraj singh Bisht		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-101969</link>

		<dc:creator><![CDATA[Suraj singh Bisht]]></dc:creator>
		<pubDate>Sun, 08 Jan 2017 03:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-101969</guid>

					<description><![CDATA[For Latest Script Check Here : http://bitforestinfo.blogspot.com/2017/01/python-script-to-fetch-domain-whois.html]]></description>
			<content:encoded><![CDATA[<p>For Latest Script Check Here : <a href="http://bitforestinfo.blogspot.com/2017/01/python-script-to-fetch-domain-whois.html" rel="nofollow ugc">http://bitforestinfo.blogspot.com/2017/01/python-script-to-fetch-domain-whois.html</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: venabili		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-101783</link>

		<dc:creator><![CDATA[venabili]]></dc:creator>
		<pubDate>Thu, 05 Jan 2017 02:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-101783</guid>

					<description><![CDATA[Working perfectly as described.
Thanks!]]></description>
			<content:encoded><![CDATA[<p>Working perfectly as described.<br />
Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: anonimouse		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-66262</link>

		<dc:creator><![CDATA[anonimouse]]></dc:creator>
		<pubDate>Fri, 20 Jun 2014 02:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-66262</guid>

					<description><![CDATA[had this error: 
File &quot;C:/Users/ryanc/Desktop/test.py&quot;, line 17, in perform_whois
    s.send(query + &#039;rn&#039;)
TypeError: &#039;str&#039; does not support the buffer interface]]></description>
			<content:encoded><![CDATA[<p>had this error:<br />
File &#8220;C:/Users/ryanc/Desktop/test.py&#8221;, line 17, in perform_whois<br />
    s.send(query + &#8216;rn&#8217;)<br />
TypeError: &#8216;str&#8217; does not support the buffer interface</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aymen AMRI eon		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-65819</link>

		<dc:creator><![CDATA[Aymen AMRI eon]]></dc:creator>
		<pubDate>Tue, 12 Nov 2013 16:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-65819</guid>

					<description><![CDATA[With a url string like www.whatheverwww.com or https://www.site.com or http://www1.test.com , your script will not work . It is better using this to remove http(s):// and www[1&#124;2&#124;3..]. : 

 def return_root(self, uri):
    #remove http and www
    p = re.compile(&#039;(https?://)?(www.*?.)?&#124;/&#039;)
    root = p.sub(&#039;&#039;,uri)
    return root]]></description>
			<content:encoded><![CDATA[<p>With a url string like <a href="http://www.whatheverwww.com" rel="nofollow ugc">http://www.whatheverwww.com</a> or <a href="https://www.site.com" rel="nofollow ugc">https://www.site.com</a> or <a href="http://www1.test.com" rel="nofollow ugc">http://www1.test.com</a> , your script will not work . It is better using this to remove http(s):// and www[1|2|3..]. : </p>
<p> def return_root(self, uri):<br />
    #remove http and www<br />
    p = re.compile(&#8216;(https?://)?(www.*?.)?|/&#8217;)<br />
    root = p.sub(&#8221;,uri)<br />
    return root</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Silver Moon		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-64948</link>

		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Wed, 20 Feb 2013 11:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-64948</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-64946&quot;&gt;animesh&lt;/a&gt;.

what is the exact error ?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-64946">animesh</a>.</p>
<p>what is the exact error ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: animesh		</title>
		<link>https://www.binarytides.com/python-program-to-fetch-domain-whois-data-using-sockets/comment-page-1/#comment-64946</link>

		<dc:creator><![CDATA[animesh]]></dc:creator>
		<pubDate>Wed, 20 Feb 2013 08:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3166#comment-64946</guid>

					<description><![CDATA[its showing invalid syntax]]></description>
			<content:encoded><![CDATA[<p>its showing invalid syntax</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
