progress-table 1.0.3__tar.gz → 1.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {progress-table-1.0.3 → progress-table-1.2.0}/PKG-INFO +17 -20
- {progress-table-1.0.3 → progress-table-1.2.0}/README.md +16 -19
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table.egg-info/PKG-INFO +17 -20
- {progress-table-1.0.3 → progress-table-1.2.0}/setup.py +1 -1
- {progress-table-1.0.3 → progress-table-1.2.0}/LICENSE.txt +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table/__init__.py +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table/test_docs_automated.py +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table.egg-info/SOURCES.txt +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table.egg-info/dependency_links.txt +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table.egg-info/requires.txt +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/progress_table.egg-info/top_level.txt +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/pyproject.toml +0 -0
- {progress-table-1.0.3 → progress-table-1.2.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: progress-table
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Display progress as a pretty table in the command line.
|
|
5
5
|
Home-page: https://github.com/gahaalt/progress-table.git
|
|
6
6
|
Author: Szymon Mikler
|
|
@@ -18,16 +18,17 @@ Requires-Python: >=3.7
|
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE.txt
|
|
20
20
|
|
|
21
|
-
> Note:
|
|
21
|
+
> Note: versions 1.X introduced new features and changes of default behaviour.
|
|
22
22
|
>
|
|
23
23
|
> The old version is still available as `progress_table.ProgressTableV0`.
|
|
24
24
|
>
|
|
25
25
|
> New features include:
|
|
26
|
-
> *
|
|
27
|
-
> *
|
|
26
|
+
> * Nested progress bar support
|
|
27
|
+
> * Custom table styles support
|
|
28
|
+
> * Color customization on row level support
|
|
28
29
|
> * Adding columns automatically, without calling `add_column`
|
|
29
30
|
> * Continuous progress bar when iterator length is unknown
|
|
30
|
-
> * Pandas and numpy
|
|
31
|
+
> * Pandas and numpy being only optional dependencies
|
|
31
32
|
> * Other minor changes
|
|
32
33
|
|
|
33
34
|
# Progress Table
|
|
@@ -36,19 +37,13 @@ License-File: LICENSE.txt
|
|
|
36
37
|
[](https://pypi.org/project/progress-table)
|
|
37
38
|
|
|
38
39
|
Lightweight utility to display the progress of your process as a pretty table in the command line.
|
|
40
|
+
Alternative to TQDM whenever you want to track metrics produced by your process.
|
|
39
41
|
|
|
40
42
|

|
|
41
43
|
|
|
42
|
-
Designed to monitor machine learning experiments, but can be used for
|
|
43
|
-
Allows you to quickly see what
|
|
44
|
-
Increases readability and
|
|
45
|
-
|
|
46
|
-
## Features
|
|
47
|
-
|
|
48
|
-
* Displaying pretty table in the terminal
|
|
49
|
-
* Progress bar embedded into the table
|
|
50
|
-
* Exporting data as lists, numpy arrays or pandas dataframes
|
|
51
|
-
* Built-in basic data aggregation: `sum` and `mean`
|
|
44
|
+
Designed to monitor machine learning experiments, but can be used for any metrics-producing process.
|
|
45
|
+
Allows you to quickly see what's going on with your process.
|
|
46
|
+
Increases readability and simplifies your command line logging.
|
|
52
47
|
|
|
53
48
|
## Purpose
|
|
54
49
|
|
|
@@ -62,7 +57,7 @@ Into this:
|
|
|
62
57
|
|
|
63
58
|
## Example
|
|
64
59
|
|
|
65
|
-
> Click here for examples of integration with
|
|
60
|
+
> Click here for examples of integration with deep learning libraries:
|
|
66
61
|
> [integrations.md](https://github.com/gahaalt/progress-table/blob/main/integrations.md).
|
|
67
62
|
|
|
68
63
|
```python
|
|
@@ -78,7 +73,7 @@ table = ProgressTable()
|
|
|
78
73
|
# Or customize its settings:
|
|
79
74
|
table = ProgressTable(
|
|
80
75
|
columns=["step"],
|
|
81
|
-
refresh_rate=
|
|
76
|
+
refresh_rate=20,
|
|
82
77
|
num_decimal_places=4,
|
|
83
78
|
default_column_width=None,
|
|
84
79
|
default_column_color=None,
|
|
@@ -145,10 +140,12 @@ pip install progress-table
|
|
|
145
140
|
|
|
146
141
|
## Alternatives
|
|
147
142
|
|
|
148
|
-
* Progress bars: great for tracking progress, but they
|
|
143
|
+
* Progress bars: great for tracking progress, but they don't provide ways to display data in clear and compact way
|
|
149
144
|
* `tqdm`
|
|
150
|
-
* `
|
|
145
|
+
* `rich.progress`
|
|
146
|
+
* `keras.utils.Progbar`
|
|
151
147
|
|
|
152
|
-
* Libraries displaying data: great for presenting data, but they lack the tracking
|
|
148
|
+
* Libraries displaying data: great for presenting tabular data, but they lack the progress tracking aspect
|
|
149
|
+
* `rich.table`
|
|
153
150
|
* `tabulate`
|
|
154
151
|
* `texttable`
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
> Note:
|
|
1
|
+
> Note: versions 1.X introduced new features and changes of default behaviour.
|
|
2
2
|
>
|
|
3
3
|
> The old version is still available as `progress_table.ProgressTableV0`.
|
|
4
4
|
>
|
|
5
5
|
> New features include:
|
|
6
|
-
> *
|
|
7
|
-
> *
|
|
6
|
+
> * Nested progress bar support
|
|
7
|
+
> * Custom table styles support
|
|
8
|
+
> * Color customization on row level support
|
|
8
9
|
> * Adding columns automatically, without calling `add_column`
|
|
9
10
|
> * Continuous progress bar when iterator length is unknown
|
|
10
|
-
> * Pandas and numpy
|
|
11
|
+
> * Pandas and numpy being only optional dependencies
|
|
11
12
|
> * Other minor changes
|
|
12
13
|
|
|
13
14
|
# Progress Table
|
|
@@ -16,19 +17,13 @@
|
|
|
16
17
|
[](https://pypi.org/project/progress-table)
|
|
17
18
|
|
|
18
19
|
Lightweight utility to display the progress of your process as a pretty table in the command line.
|
|
20
|
+
Alternative to TQDM whenever you want to track metrics produced by your process.
|
|
19
21
|
|
|
20
22
|

|
|
21
23
|
|
|
22
|
-
Designed to monitor machine learning experiments, but can be used for
|
|
23
|
-
Allows you to quickly see what
|
|
24
|
-
Increases readability and
|
|
25
|
-
|
|
26
|
-
## Features
|
|
27
|
-
|
|
28
|
-
* Displaying pretty table in the terminal
|
|
29
|
-
* Progress bar embedded into the table
|
|
30
|
-
* Exporting data as lists, numpy arrays or pandas dataframes
|
|
31
|
-
* Built-in basic data aggregation: `sum` and `mean`
|
|
24
|
+
Designed to monitor machine learning experiments, but can be used for any metrics-producing process.
|
|
25
|
+
Allows you to quickly see what's going on with your process.
|
|
26
|
+
Increases readability and simplifies your command line logging.
|
|
32
27
|
|
|
33
28
|
## Purpose
|
|
34
29
|
|
|
@@ -42,7 +37,7 @@ Into this:
|
|
|
42
37
|
|
|
43
38
|
## Example
|
|
44
39
|
|
|
45
|
-
> Click here for examples of integration with
|
|
40
|
+
> Click here for examples of integration with deep learning libraries:
|
|
46
41
|
> [integrations.md](https://github.com/gahaalt/progress-table/blob/main/integrations.md).
|
|
47
42
|
|
|
48
43
|
```python
|
|
@@ -58,7 +53,7 @@ table = ProgressTable()
|
|
|
58
53
|
# Or customize its settings:
|
|
59
54
|
table = ProgressTable(
|
|
60
55
|
columns=["step"],
|
|
61
|
-
refresh_rate=
|
|
56
|
+
refresh_rate=20,
|
|
62
57
|
num_decimal_places=4,
|
|
63
58
|
default_column_width=None,
|
|
64
59
|
default_column_color=None,
|
|
@@ -125,10 +120,12 @@ pip install progress-table
|
|
|
125
120
|
|
|
126
121
|
## Alternatives
|
|
127
122
|
|
|
128
|
-
* Progress bars: great for tracking progress, but they
|
|
123
|
+
* Progress bars: great for tracking progress, but they don't provide ways to display data in clear and compact way
|
|
129
124
|
* `tqdm`
|
|
130
|
-
* `
|
|
125
|
+
* `rich.progress`
|
|
126
|
+
* `keras.utils.Progbar`
|
|
131
127
|
|
|
132
|
-
* Libraries displaying data: great for presenting data, but they lack the tracking
|
|
128
|
+
* Libraries displaying data: great for presenting tabular data, but they lack the progress tracking aspect
|
|
129
|
+
* `rich.table`
|
|
133
130
|
* `tabulate`
|
|
134
131
|
* `texttable`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: progress-table
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Display progress as a pretty table in the command line.
|
|
5
5
|
Home-page: https://github.com/gahaalt/progress-table.git
|
|
6
6
|
Author: Szymon Mikler
|
|
@@ -18,16 +18,17 @@ Requires-Python: >=3.7
|
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE.txt
|
|
20
20
|
|
|
21
|
-
> Note:
|
|
21
|
+
> Note: versions 1.X introduced new features and changes of default behaviour.
|
|
22
22
|
>
|
|
23
23
|
> The old version is still available as `progress_table.ProgressTableV0`.
|
|
24
24
|
>
|
|
25
25
|
> New features include:
|
|
26
|
-
> *
|
|
27
|
-
> *
|
|
26
|
+
> * Nested progress bar support
|
|
27
|
+
> * Custom table styles support
|
|
28
|
+
> * Color customization on row level support
|
|
28
29
|
> * Adding columns automatically, without calling `add_column`
|
|
29
30
|
> * Continuous progress bar when iterator length is unknown
|
|
30
|
-
> * Pandas and numpy
|
|
31
|
+
> * Pandas and numpy being only optional dependencies
|
|
31
32
|
> * Other minor changes
|
|
32
33
|
|
|
33
34
|
# Progress Table
|
|
@@ -36,19 +37,13 @@ License-File: LICENSE.txt
|
|
|
36
37
|
[](https://pypi.org/project/progress-table)
|
|
37
38
|
|
|
38
39
|
Lightweight utility to display the progress of your process as a pretty table in the command line.
|
|
40
|
+
Alternative to TQDM whenever you want to track metrics produced by your process.
|
|
39
41
|
|
|
40
42
|

|
|
41
43
|
|
|
42
|
-
Designed to monitor machine learning experiments, but can be used for
|
|
43
|
-
Allows you to quickly see what
|
|
44
|
-
Increases readability and
|
|
45
|
-
|
|
46
|
-
## Features
|
|
47
|
-
|
|
48
|
-
* Displaying pretty table in the terminal
|
|
49
|
-
* Progress bar embedded into the table
|
|
50
|
-
* Exporting data as lists, numpy arrays or pandas dataframes
|
|
51
|
-
* Built-in basic data aggregation: `sum` and `mean`
|
|
44
|
+
Designed to monitor machine learning experiments, but can be used for any metrics-producing process.
|
|
45
|
+
Allows you to quickly see what's going on with your process.
|
|
46
|
+
Increases readability and simplifies your command line logging.
|
|
52
47
|
|
|
53
48
|
## Purpose
|
|
54
49
|
|
|
@@ -62,7 +57,7 @@ Into this:
|
|
|
62
57
|
|
|
63
58
|
## Example
|
|
64
59
|
|
|
65
|
-
> Click here for examples of integration with
|
|
60
|
+
> Click here for examples of integration with deep learning libraries:
|
|
66
61
|
> [integrations.md](https://github.com/gahaalt/progress-table/blob/main/integrations.md).
|
|
67
62
|
|
|
68
63
|
```python
|
|
@@ -78,7 +73,7 @@ table = ProgressTable()
|
|
|
78
73
|
# Or customize its settings:
|
|
79
74
|
table = ProgressTable(
|
|
80
75
|
columns=["step"],
|
|
81
|
-
refresh_rate=
|
|
76
|
+
refresh_rate=20,
|
|
82
77
|
num_decimal_places=4,
|
|
83
78
|
default_column_width=None,
|
|
84
79
|
default_column_color=None,
|
|
@@ -145,10 +140,12 @@ pip install progress-table
|
|
|
145
140
|
|
|
146
141
|
## Alternatives
|
|
147
142
|
|
|
148
|
-
* Progress bars: great for tracking progress, but they
|
|
143
|
+
* Progress bars: great for tracking progress, but they don't provide ways to display data in clear and compact way
|
|
149
144
|
* `tqdm`
|
|
150
|
-
* `
|
|
145
|
+
* `rich.progress`
|
|
146
|
+
* `keras.utils.Progbar`
|
|
151
147
|
|
|
152
|
-
* Libraries displaying data: great for presenting data, but they lack the tracking
|
|
148
|
+
* Libraries displaying data: great for presenting tabular data, but they lack the progress tracking aspect
|
|
149
|
+
* `rich.table`
|
|
153
150
|
* `tabulate`
|
|
154
151
|
* `texttable`
|
|
@@ -9,7 +9,7 @@ long_description = (this_directory / "README.md").read_text(encoding="UTF-8")
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name="progress-table",
|
|
12
|
-
version="1.0
|
|
12
|
+
version="1.2.0",
|
|
13
13
|
url="https://github.com/gahaalt/progress-table.git",
|
|
14
14
|
author="Szymon Mikler",
|
|
15
15
|
author_email="sjmikler@gmail.com",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|