Metadata-Version: 2.4
Name: vrint
Version: 0.2.0
Summary: A package that provides a verbose print function
Author-email: Huayra1 <Huayra1@live.no>
License: MIT License
        
        Copyright (c) 2025 Huayra1
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/Huayra1/vrint
Project-URL: Bug Tracker, https://github.com/Huayra1/vrint/issues
Project-URL: Documentation, https://github.com/Huayra1/vrint/blob/main/README.md
Project-URL: Source Code, https://github.com/Huayra1/vrint
Project-URL: Changelog, https://github.com/Huayra1/vrint/blob/main/CHANGELOG.md
Project-URL: License, https://github.com/Huayra1/vrint/blob/main/LICENSE
Project-URL: Releases, https://github.com/Huayra1/vrint/releases
Project-URL: Issues, https://github.com/Huayra1/vrint/issues
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Vrint Package

A Python package that provides a verbose print function.

## Installation

You can install the package using pip:

```bash
pip install vrint
```

## Usage

Import the `vrint` function and the `verbose` variable from the package:

```python
from vrint import vrint, verbose

verbose = False
vrint("This message will not be printed.")

verbose = True
vrint("This message will be printed.")

# You can also use the verbose flag directly in functions:
def hello_world(verbose=True):
    vrint("Hello, world!", verbose=verbose)

hello_world() # This will print
hello_world(verbose=False) # This will not print


## Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue.

## License

This project is licensed under the MIT License. See the LICENSE file for details.

## Author

This package was created by Huayra1.



