Metadata-Version: 2.1
Name: viper_lib
Version: 0.5.1
Summary: A Python library full of useful Python tools.
Project-URL: Repository, https://github.com/MrVoustache/Viper
Project-URL: Bug Tracker, https://github.com/MrVoustache/Viper/issues
Author-email: Vincent Raulin <vincent.raulin.n7@gmail.com>
License: MIT License
        
        Copyright (c) 2023 Vincent Raulin
        
        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.
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Viper
A Python library full of useful Python tools.

Viper adds many missing tools and improves many existing tools in Python.
For example, this includes frozendicts, DeamonThread class, other Thread subclasses, improved ABCs, debugging tools, new decorators and classes, etc.
It is designed to feel very Python-like.

To list all of the available packages, simply Python's interactive prompt and explore:

```
>>> from Viper import *
>>> dir()
['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'abc', 'better_threading', 'building', 'compress', 'debugging', 'exceptions', 'format', 'frozendict', 'interactive', 'meta', 'pickle_utils', 'warnings']
>>> help(better_threading)
Help on module Viper.better_threading in Viper:

NAME
    Viper.better_threading - This module adds new classes of threads, including one for deamonic threads, but also fallen threads and useful multithreading tools.

...
```
