Metadata-Version: 2.1
Name: devcon-win
Version: 0.2.4.1
Summary: devcon_win - interact with devcon.exe in NT systems
Home-page: https://github.com/Shivanshu26shiv/devcon_win
Author: Shivanshu Srivastava
Author-email: shivanshu26shiv@gmail.com
License: MIT
Download-URL: https://github.com/Shivanshu26shiv/devcon_win/archive/v_02.4.1.tar.gz
Description: <h2>devcon_win - to interact with <a href='https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon' target='_blank'>devcon.exe</a> in NT systems using Python</h2>
        
        With devcon_win, you can access all functions of devcon.exe. In addition, you can see all available drivers as a function. Originally it was created to simply enable/disable device drivers using python.
        
        See below for more details.
        <h3>Getting it:</h3>
        To download devcon_win, either fork its github repo or simply use 
        Pypi via pip.
        
        	$ pip install devcon_win
        
        
        <h3>Compatibility:</h3>
        devcon_win is compatible for both python2 and python3.
        
        <h3>Using it:</h3>
        
        <ol>
        
        <li>The devcon.exe present in this rep is for '64 bit windows 10'. If your windows's version is different then download <a href='https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon' target='_blank'>devcon.exe</a> as per requirement.</li>
        <li>Move devcon.exe in the current script's directory or any path defined in environment variables say Python27/Scripts.</li>
        <li>Install devcon_win from pip.</li>
        
        <li>
        Use <b>devcon_win_driver.py</b> as a sample to <b>disable webcam</b> or any other driver as per requirement <b>{BE CAREFUL}</b>:
        
        	import devcon_win
        
        	# To display status
        	print(devcon_win.HP_TrueVision_HD()) 
        	# Or
        	print(devcon_win.HP_TrueVision_HD('status')) 
        
        	# To change status
        	print(devcon_win.HP_TrueVision_HD('enable')) # will show options after 'devcon_win.'
        
        
        P.S: list of examples of devcon commands are present <a href='https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon-examples' target='_blank'>here.</a>
        
        </li>
        
        </ol>
        
        <h3>Contact:</h3>
        <ul>
        <li>LinkedIn: https://www.linkedin.com/in/shivanshu26shiv/</li>
        </ul>
        
Keywords: devcon,hardware drivers,device drivers,drivers
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
