Metadata-Version: 2.1
Name: windowsapps
Version: 0.0.1
Summary: Windows Apps for python
Home-page: https://github.com/StealtherThreat/windowsapps
Author: Tushar Goyal
Author-email: StealtherThreat@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# windowsapps - Python library for managing installed applications on Windows
[![License](https://img.shields.io/github/license/StealtherThreat/WindowsApps)](https://opensource.org/licenses/MIT)

## Installation
To install `windowsapps` from PyPi run:
```shell
pip install windowsapps
```
## Usage

### Getting all Installed Applicatons
```python
import windowsapps

installed_applications = windowsapps.get_apps() 
#Gives Dictionary of Application names along with their AppID
```

### Getting the Name, AppId for a particular application
```python
import windowsapps

name, appid = windowsapps.find_app('APPLICATION NAME')
#searches for the APPLICATION NAME and returns:-
#name = Name of the application.
#appid = AppId of the application
```

### Open an application
```python
import windowsapps

windowsapps.open_app('APPLICATION NAME')
#Will search for the application APPLICATION NAME and open it.
```

## Caveats
This library will works for all applications installed on the PC including Windows Store Applications.
Works perfectly fine on Windows 10.
Use json & subprocess modules to work.



