Metadata-Version: 2.1
Name: simple_webbrowser
Version: 0.1.3
Summary: A better webbrowser. A WAAAY more simple webbrowser. Just. For. You.
Project-URL: Homepage, https://github.com/MF366-Coding/simple_webbrowser
Project-URL: Bug Tracker, https://github.com/MF366-Coding/simple_webbrowser/issues
Author-email: MF366 <real_mf366@yahoo.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# simple_webbrowser
`simple_webbrowser` is a module that makes `webbrowser` module way more simple to work with.

**This module has been recently reestructurated with a new `__init__.py` file so you don't have to import `simple_webbrowser` from `simple_webbrowser`, which is pointless.** Apps that used that are still compatible though!

## License
This module is licensed under the MIT License.

# Installing
Use the following command on the commandline:
```bash
pip install simple_webbrowser
```

Or, for Windows (if Python is on ``PATH``, but ``pip`` isn't):
```powershell
python -m pip install simple_webbrowser
```

# Usage
Import it like this:
```py
from simple_webbrowser import simple_webbrowser

# Afterwards, you can use it :)
```

## A program that searches on Google
```py
# Just an example of what you can do with this module
# Not a great example though
from simple_webbrowser import simple_webbrowser as swb

try:
	x = input()
	swb.Google(query=x)
except:
	swb.Google("empty :(")
```

# Projects where this module is used... (GitHub)
**Search query:** [simple_webbrowser language:Python](https://github.com/search?q=simple_webbrowser+language%3APython&type=code)

**Filters:** code
