mirror of
https://github.com/KevinMidboe/tableprint.git
synced 2025-12-08 20:39:08 +00:00
Merge branch 'master' into variable_width
This commit is contained in:
@@ -49,6 +49,7 @@ Hosted at Read The Docs: [tableprint.readthedocs.org](http://tableprint.readthed
|
|||||||
- `six`
|
- `six`
|
||||||
|
|
||||||
## Version
|
## Version
|
||||||
|
- 0.6.9 (May 25 2017) Splitting the tableprint.py module into a pacakge with multiple files
|
||||||
- 0.6.7 (May 25 2017) Fixes some bugs with ANSI escape sequences
|
- 0.6.7 (May 25 2017) Fixes some bugs with ANSI escape sequences
|
||||||
- 0.5.0 (Sept 29 2016) Better handling of ANSI escape sequences in table rows
|
- 0.5.0 (Sept 29 2016) Better handling of ANSI escape sequences in table rows
|
||||||
- 0.4.0 (May 3 2016) Adds a 'block' style
|
- 0.4.0 (May 3 2016) Adds a 'block' style
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Version info
|
# Version info
|
||||||
__version__ = '0.6.8'
|
__version__ = '0.6.9'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
|
|
||||||
# Project description(s)
|
# Project description(s)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
"""
|
"""
|
||||||
Table styles
|
Table styles
|
||||||
"""
|
"""
|
||||||
|
from __future__ import print_function, unicode_literals
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__all__ = ('STYLES', 'LineStyle', 'TableStyle')
|
__all__ = ('STYLES', 'LineStyle', 'TableStyle')
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
"""
|
"""
|
||||||
Tableprint utilities
|
Tableprint utilities
|
||||||
"""
|
"""
|
||||||
|
from __future__ import print_function, unicode_literals
|
||||||
import re
|
import re
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user