<?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: Getting Windows System Information with Python</title>
	<atom:link href="http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/</link>
	<description>Python Programming from the Frontlines</description>
	<lastBuildDate>Fri, 30 Jul 2010 14:54:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: netpork</title>
		<link>http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/comment-page-1/#comment-16873</link>
		<dc:creator>netpork</dc:creator>
		<pubDate>Thu, 04 Feb 2010 10:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.pythonlibrary.org/?p=500#comment-16873</guid>
		<description>thanks for sharing this. keep up the great work! :)

cheers!</description>
		<content:encoded><![CDATA[<p>thanks for sharing this. keep up the great work! <img src='http://www.blog.pythonlibrary.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/comment-page-1/#comment-16572</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 29 Jan 2010 13:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.pythonlibrary.org/?p=500#comment-16572</guid>
		<description>@ Andrej,

I have seen this, but as I mentioned at the beginning of this article, this was based on a recipe from ActiveState. I actually had done something else when we didn&#039;t need all this information, but I haven&#039;t been able to find that code yet. As I recall, my colleague found this recipe and we modified it as needed and didn&#039;t look any further.

Thanks for the information though.

- Mike</description>
		<content:encoded><![CDATA[<p>@ Andrej,</p>
<p>I have seen this, but as I mentioned at the beginning of this article, this was based on a recipe from ActiveState. I actually had done something else when we didn&#8217;t need all this information, but I haven&#8217;t been able to find that code yet. As I recall, my colleague found this recipe and we modified it as needed and didn&#8217;t look any further.</p>
<p>Thanks for the information though.</p>
<p>- Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrej M.</title>
		<link>http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/comment-page-1/#comment-16531</link>
		<dc:creator>Andrej M.</dc:creator>
		<pubDate>Fri, 29 Jan 2010 02:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.pythonlibrary.org/?p=500#comment-16531</guid>
		<description>Have you taken a look at the python standard library?

There&#039;s:

sys.getwindowsversion()

Returns: (major, minor, build, platform, and text)

e.g. (5, 1, 2600, 2, &#039;Service Pack 3&#039;)

---

platform.win32_ver()

Returns: (release, version, csd, ptype)

e.g. (&#039;XP&#039;, &#039;5.1.2600&#039;, &#039;SP3&#039;, &#039;Multiprocessor Free&#039;)

---

platform.uname()

Returns: (system, node, release, version, machine, processor)

e.g. (&#039;Windows&#039;, &#039;computer_1&#039;, &#039;XP&#039;, &#039;5.1.2600&#039;, &#039;x86&#039;, &#039;x86 Family 16 Model 5 Stepping 2, AuthenticAMD&#039;)

More info:
http://docs.python.org/library/platform.html
http://docs.python.org/library/sys.html</description>
		<content:encoded><![CDATA[<p>Have you taken a look at the python standard library?</p>
<p>There&#8217;s:</p>
<p>sys.getwindowsversion()</p>
<p>Returns: (major, minor, build, platform, and text)</p>
<p>e.g. (5, 1, 2600, 2, &#8216;Service Pack 3&#8242;)</p>
<p>&#8212;</p>
<p>platform.win32_ver()</p>
<p>Returns: (release, version, csd, ptype)</p>
<p>e.g. (&#8216;XP&#8217;, &#8217;5.1.2600&#8242;, &#8216;SP3&#8242;, &#8216;Multiprocessor Free&#8217;)</p>
<p>&#8212;</p>
<p>platform.uname()</p>
<p>Returns: (system, node, release, version, machine, processor)</p>
<p>e.g. (&#8216;Windows&#8217;, &#8216;computer_1&#8242;, &#8216;XP&#8217;, &#8217;5.1.2600&#8242;, &#8216;x86&#8242;, &#8216;x86 Family 16 Model 5 Stepping 2, AuthenticAMD&#8217;)</p>
<p>More info:<br />
<a href="http://docs.python.org/library/platform.html" rel="nofollow">http://docs.python.org/library/platform.html</a><br />
<a href="http://docs.python.org/library/sys.html" rel="nofollow">http://docs.python.org/library/sys.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Burton</title>
		<link>http://www.blog.pythonlibrary.org/2010/01/27/getting-windows-system-information-with-python/comment-page-1/#comment-16507</link>
		<dc:creator>Brandon Burton</dc:creator>
		<pubDate>Thu, 28 Jan 2010 18:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.pythonlibrary.org/?p=500#comment-16507</guid>
		<description>This is fantastic.  Thanks for rounding it up.</description>
		<content:encoded><![CDATA[<p>This is fantastic.  Thanks for rounding it up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.384 seconds -->
