48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
# Text table
|
|
|
|
A simple library for creating text tables.
|
|
|
|
## Installation
|
|
You can install the library using pip:
|
|
|
|
```bash
|
|
pip install text-table --index-url https://jcloud-services.ddns.net/simple/
|
|
```
|
|
|
|
## Usage
|
|
- `table`: The function which creates a text table from the params.
|
|
- `TableBorderCharset`: A class for the charset of a table border.
|
|
- `BORDER_THIN`, `BORDER_THICK`, `BORDER_DOUBLE`, `BORDER_ROUND`: Prepared border charsets.
|
|
|
|
|
|
## Changelog
|
|
|
|
### Version 0.1.4
|
|
- Better handling of empty tables
|
|
|
|
### Version 0.1.3
|
|
- Added support for objects with custom length and correct formatting of these
|
|
|
|
### Version 0.1.2
|
|
- Corrected type hints mistake
|
|
|
|
### Version 0.1.1
|
|
- Renamed functions
|
|
|
|
### Version 0.1.0
|
|
- First release
|
|
|
|
## Notice
|
|
Copyright for this documentation 2026 jCloud Services GbR
|
|
|
|
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
|
|
|
|
https://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. |