<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Main_Page</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>Recent changes to Main_Page</description><atom:link href="https://sourceforge.net/p/pyhook/wiki/Main_Page/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 20 Jun 2014 18:29:29 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/pyhook/wiki/Main_Page/feed" rel="self" type="application/rss+xml"/><item><title>Main_Page modified by nanotube</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -22,13 +22,13 @@

 ## Binary releases

-This project provides compiled releases of the pyHook library in the [file releases](https://sourceforge.net/project/showfiles.php?group_id=235202) section of the project site. It is advised that you use the latest release. If you choose to use the precompiled installer, all you have to do is double-click the installer and follow the install wizard. 
+This project provides compiled releases of the pyHook library in the [file releases](http://sourceforge.net/projects/pyhook/files/) section of the project site. It is advised that you use the latest release. If you choose to use the precompiled installer, all you have to do is double-click the installer and follow the install wizard. 

 ## Source releases

-The project also makes source code releases, also posted in the [file releases](https://sourceforge.net/project/showfiles.php?group_id=235202) section. You can if you wish get the source zip, and compile the code yourself, using [these instructions](PyHook_Build_Instructions). This will produce a binary installer for you, just like the ones released by the project. 
+The project also makes source code releases, also posted in the [file releases](http://sourceforge.net/projects/pyhook/files/) section. You can if you wish get the source zip, and compile the code yourself, using [these instructions](PyHook_Build_Instructions). This will produce a binary installer for you, just like the ones released by the project. 

-You can also pull the latest code [from CVS](http://pyhook.cvs.sourceforge.net/pyhook/), if you are feeling adventurous. 
+You can also pull the latest code [from git](http://sourceforge.net/scm/?type=git&amp;amp;group_id=235202), if you are feeling adventurous. 

 # Planned Features

@@ -45,4 +45,4 @@

 # Need help?

-If you need help, please post on the [help forum](https://sourceforge.net/forum/forum.php?forum_id=850395) of the project site. 
+If you need help, please post on the [help forum](http://sourceforge.net/forum/forum.php?forum_id=850395) of the project site. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nanotube</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net3fe70b44f68dfe2fec9aa71a56efd63aaca9545d</guid></item><item><title>Main_Page modified by nanotube</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -1,18 +1,48 @@
-**MediaWiki has been successfully installed.**
+[TOC]

-Consult the [User's Guide](http://meta.wikimedia.org/wiki/Help:Contents) for information on using the wiki software. 
+# About pyHook

-## Getting started
+pyHook is a [python](http://www.python.org) wrapper for global input hooks in Windows. Specifically it wraps the Windows [SetWindowsHookEx](http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/hooks/hookreference/hookfunctions/setwindowshookex.asp) API function using low-level keyboard ([WH_KEYBOARD_LL](http://msdn.microsoft.com/en-us/library/ms644985\(VS.85\).aspx)) and mouse ([WH_MOUSE_LL](http://msdn.microsoft.com/en-us/library/ms644986\(VS.85\).aspx)) hooks. 

-  * [Configuration settings list](http://www.mediawiki.org/wiki/Manual:Configuration_settings)
-  * [MediaWiki FAQ](http://www.mediawiki.org/wiki/Manual:FAQ)
-  * [MediaWiki release mailing list](http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce)
+The pyHook package provides callbacks for global mouse and keyboard events in Windows. Python applications register can event handlers for user input events such as left mouse down, left mouse up, key down, etc. and set the keyboard and/or mouse hook. The underlying C library reports information like the time of the event, the name of the window in which the event occurred, the value of the event, any keyboard modifiers, etc. Events can be logged and/or filtered. 

-## Project Logo
+# Documentation

-Click on the following image to upload a new version of the PNG logo image for your project: 
+  * A pyHook [tutorial](PyHook_Tutorial). 
+  * [pyHook API documentation](http://pyhook.sourceforge.net/doc_1.5.0/) (as of v1.5.0) 
+  * [How to build pyHook from source](PyHook_Build_Instructions) 

-[[img src=MediaWikiSidebarLogo.png]] 
+# System Requirements

-  
+  * Windows 2000 or later (low-level hooks are not supported in earlier versions of Windows) 
+  * [Python](http://www.python.org) 2.4 or later 
+  * [PyWin32](http://sourceforge.net/projects/pywin32/) (formerly known as win32all extensions) 

+# Download/Install
+
+## Binary releases
+
+This project provides compiled releases of the pyHook library in the [file releases](https://sourceforge.net/project/showfiles.php?group_id=235202) section of the project site. It is advised that you use the latest release. If you choose to use the precompiled installer, all you have to do is double-click the installer and follow the install wizard. 
+
+## Source releases
+
+The project also makes source code releases, also posted in the [file releases](https://sourceforge.net/project/showfiles.php?group_id=235202) section. You can if you wish get the source zip, and compile the code yourself, using [these instructions](PyHook_Build_Instructions). This will produce a binary installer for you, just like the ones released by the project. 
+
+You can also pull the latest code [from CVS](http://pyhook.cvs.sourceforge.net/pyhook/), if you are feeling adventurous. 
+
+# Planned Features
+
+  * Switch to using Unicode instead of Ascii, to be more useful to non-English locales 
+  * Fix the dead-keys bug 
+
+# License
+
+pyHook is licensed under the [MIT Licence](http://www.opensource.org/licenses/mit-license.php). 
+
+# Credits
+
+The original author of this library is Peter Parente (though he no longer maintains this project.) 
+
+# Need help?
+
+If you need help, please post on the [help forum](https://sourceforge.net/forum/forum.php?forum_id=850395) of the project site. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nanotube</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net4d52dfbe87907de6531a06e4fdeb15ea34961766</guid></item><item><title>Main_Page modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net6339091857e754d4adbab7fb4d1513e6a0c0f2d5</guid></item><item><title>Main_Page modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net5364173e2db90194d0f108cdafd808c2be121817</guid></item><item><title>Main_Page modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.netec2e99d38d4a2115a7ed6c4a060458cd848d687b</guid></item><item><title>Main_Page modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v10
+++ v11
@@ -13,3 +13,6 @@
 Click on the following image to upload a new version of the PNG logo image for your project:

 [[img src=MediaWikiSidebarLogo.png]] 
+
+  
+
&lt;/pre&gt;
&lt;/div&gt;</description><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net7d4fad8065bf040597fd3161e4d490f7526991b6</guid></item><item><title>Main_Page modified by Anonymous</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -10,4 +10,6 @@

 ## Project Logo

-Click on [[img src=Logo.png]] to upload a PNG Logo image. 
+Click on the following image to upload a new version of the PNG logo image for your project: 
+
+[[img src=MediaWikiSidebarLogo.png]] 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net53c9bbcfdec6ca65a1da057076c2b161ebba8850</guid></item><item><title>Main_Page modified by Anonymous</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -10,6 +10,4 @@

 ## Project Logo

-Click on the following image and **Upload a new version** to set a new PNG logo image. 
-
-[[img src=Logo.png]] 
+Click on [[img src=Logo.png]] to upload a PNG Logo image. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.netef09e6478a0b98712e240eee7acb39b2246c960c</guid></item><item><title>Main_Page modified by Anonymous</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -10,4 +10,6 @@

 ## Project Logo

-Click on the following image and **Upload a new version** to set a new PNG logo image. [[img src=Logo.png]] 
+Click on the following image and **Upload a new version** to set a new PNG logo image. 
+
+[[img src=Logo.png]] 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.netcaa1801c0f01c73ae14995395c66e0c67c53f70b</guid></item><item><title>Main_Page modified by Anonymous</title><link>https://sourceforge.net/p/pyhook/wiki/Main_Page/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -7,6 +7,7 @@
   * [Configuration settings list](http://www.mediawiki.org/wiki/Manual:Configuration_settings)
   * [MediaWiki FAQ](http://www.mediawiki.org/wiki/Manual:FAQ)
   * [MediaWiki release mailing list](http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce)
-  * Project Logo

-To set your project logo simply [Special:Upload&amp;amp;wpDestFile=Logo.png] of the following image: [[img src=Logo.png]] 
+## Project Logo
+
+Click on the following image and **Upload a new version** to set a new PNG logo image. [[img src=Logo.png]] 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 20 Jun 2014 18:29:29 -0000</pubDate><guid>https://sourceforge.net2133b1d4deacd5046f8b986a6d1a4c53e5c29a76</guid></item></channel></rss>