Metadata-Version: 2.1
Name: pymisclib
Version: 1.4.2
Summary: A collection of various useful Python routines.
Author-email: Christian Dönges <cd.pymisclib@platypus-projects.net>
Project-URL: Homepage, https://rot.regenbogenkraut.de/cd/pymisclib
Project-URL: Bug Tracker, https://rot.regenbogenkraut.de/cd/pymisclib/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# pymisclib
A collection of various useful Python routines.

## Authors
[Christian Dönges](https://rot.regenbogenkraut.de/cd/)


## Documentation

Documentation is available at https://pymisclib.readthedocs.io/en/latest/.

Assuming that you have [Sphinx](https://www.sphinx-doc.org/) installed, you can build it yourself:

```bash
cd docs
make html
```

The documentation is created at _docs/\_build/html_.


## Installation
Install pymisclib using `pip`:

```bash
python -m pip install pymisclib
```

On Debian and possibly other systems, you may have to use

```bash
python3 -m pip install pymisclib
```

## Requirements
* Python 3.9 or later.


## LICENSE
© Copyright 2012, 2022, 2023 by Christian Dönges <cd.pymisclib@platypus-projects.net>

Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain a
copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


If you need another license, contact the author to discuss terms.


## ANSI Support
The following features of *ansiterminal* are supported by various terminals:

|                           | Alacritty | Gnome Terminal | PyCharm | Windows Cmd | Windows Terminal |
|:--------------------------|:---------:|:--------------:|:-------:|:-----------:|:----------------:|
| Classic Colors            |    yes    |      yes       |   yes   |             |                  |
| 24 bit Colors             |    yes    |      yes       |   yes   |             |                  |
| **Bold**                  |    yes    |      yes       |   yes   |             |                  |
| Faint                     |    no     |       no       |   yes   |             |                  |
| *Italic*                  |    yes    |      yes       |   yes   |             |                  |
| <u>Underline</u>          |    yes    |      yes       |   yes   |             |                  |
| <blink>Slow Blink</blink> |    no     |       no       |   no    |             |                  |
| Rapid Blink               |    no     |       no       |   no    |             |                  |
| Reverse                   |    yes    |      yes       |   yes   |             |                  |
| Hide                      |    yes    |      yes       |   no    |             |                  |
| Strikeout                 |    yes    |      yes       |   no    |             |                  |
| Double Underline          |    no     |      yes       |   no    |             |                  |
| Superscript               |    no     |       no       |   no    |             |                  |
| Subscript                 |    no     |       no       |   no    |             |                  |
|                           |           |                |         |             |                  |

