tableskill 0.3.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.
- tableskill-0.3.0/LICENSE +21 -0
- tableskill-0.3.0/PKG-INFO +92 -0
- tableskill-0.3.0/README.md +51 -0
- tableskill-0.3.0/pyproject.toml +30 -0
- tableskill-0.3.0/setup.cfg +4 -0
- tableskill-0.3.0/src/tableskill/__init__.py +1 -0
- tableskill-0.3.0/src/tableskill/tableskill.py +120 -0
- tableskill-0.3.0/src/tableskill.egg-info/PKG-INFO +92 -0
- tableskill-0.3.0/src/tableskill.egg-info/SOURCES.txt +10 -0
- tableskill-0.3.0/src/tableskill.egg-info/dependency_links.txt +1 -0
- tableskill-0.3.0/src/tableskill.egg-info/requires.txt +10 -0
- tableskill-0.3.0/src/tableskill.egg-info/top_level.txt +1 -0
tableskill-0.3.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Walter Levy <klwlevy@hotmail.com> and contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tableskill
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: A Python package to visualize tabular data via https://www.tableskill.com/
|
|
5
|
+
Author-email: Walter Levy <klwlevy@hotmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Walter Levy <klwlevy@hotmail.com> and contributors
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
Project-URL: Repository, https://github.com/klwlevy/tableskill.git
|
|
28
|
+
Classifier: Programming Language :: Python
|
|
29
|
+
Requires-Python: >=3.11
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
License-File: LICENSE
|
|
32
|
+
Requires-Dist: polars>=1.0
|
|
33
|
+
Provides-Extra: docs
|
|
34
|
+
Requires-Dist: mkdocs; extra == "docs"
|
|
35
|
+
Requires-Dist: mkdocs-material; extra == "docs"
|
|
36
|
+
Requires-Dist: mkdocstrings-python; extra == "docs"
|
|
37
|
+
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: tableskill[docs]; extra == "dev"
|
|
39
|
+
Requires-Dist: black; extra == "dev"
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# TableSkill
|
|
43
|
+
|
|
44
|
+
Python package for visualization of tabular data via https://www.tableskill.com/
|
|
45
|
+
Specifically, polars (https://pola.rs/) dataframes are supported.
|
|
46
|
+
|
|
47
|
+
# Usage:
|
|
48
|
+
|
|
49
|
+
You can comfortably visualize your polars dataframes in tableskill as in this self-contained example:
|
|
50
|
+
```python
|
|
51
|
+
|
|
52
|
+
import tableskill as ts
|
|
53
|
+
import polars as pl
|
|
54
|
+
|
|
55
|
+
from datetime import datetime
|
|
56
|
+
|
|
57
|
+
# Create two dataframes from scratch
|
|
58
|
+
my_df1 = pl.DataFrame(
|
|
59
|
+
{
|
|
60
|
+
"integer": [1, 2, 3],
|
|
61
|
+
"date": [
|
|
62
|
+
datetime(2025, 1, 1),
|
|
63
|
+
datetime(2025, 1, 2),
|
|
64
|
+
datetime(2025, 1, 3),
|
|
65
|
+
],
|
|
66
|
+
"float": [4.1, 5.2, 6.3],
|
|
67
|
+
"string": ["a", "b", "c"],
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
my_df2 = pl.DataFrame(
|
|
72
|
+
{
|
|
73
|
+
"an_integer": range(10),
|
|
74
|
+
}
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
# Define a dictionary for the 2 dataframes
|
|
78
|
+
my_dataframe_dict = {
|
|
79
|
+
"1 my_df": my_df1,
|
|
80
|
+
"2 my_df": my_df2,
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
# Export the dataframes to tableskill using the tableskill function
|
|
84
|
+
ts.tableskill(
|
|
85
|
+
dataframe_dict = my_dataframe_dict,
|
|
86
|
+
sub_folder_in_export = "tableskill_sample",
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
The above will generate flat files suitable for https://www.tableskill.com/ on your hard drive under
|
|
91
|
+
`~\<LAST_NAME>\temp\tableskill\<YYYYMMDD>\tableskill_sample\`
|
|
92
|
+
You can simply drag invidual files or an entire folder structure into TableSkill.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# TableSkill
|
|
2
|
+
|
|
3
|
+
Python package for visualization of tabular data via https://www.tableskill.com/
|
|
4
|
+
Specifically, polars (https://pola.rs/) dataframes are supported.
|
|
5
|
+
|
|
6
|
+
# Usage:
|
|
7
|
+
|
|
8
|
+
You can comfortably visualize your polars dataframes in tableskill as in this self-contained example:
|
|
9
|
+
```python
|
|
10
|
+
|
|
11
|
+
import tableskill as ts
|
|
12
|
+
import polars as pl
|
|
13
|
+
|
|
14
|
+
from datetime import datetime
|
|
15
|
+
|
|
16
|
+
# Create two dataframes from scratch
|
|
17
|
+
my_df1 = pl.DataFrame(
|
|
18
|
+
{
|
|
19
|
+
"integer": [1, 2, 3],
|
|
20
|
+
"date": [
|
|
21
|
+
datetime(2025, 1, 1),
|
|
22
|
+
datetime(2025, 1, 2),
|
|
23
|
+
datetime(2025, 1, 3),
|
|
24
|
+
],
|
|
25
|
+
"float": [4.1, 5.2, 6.3],
|
|
26
|
+
"string": ["a", "b", "c"],
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
my_df2 = pl.DataFrame(
|
|
31
|
+
{
|
|
32
|
+
"an_integer": range(10),
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
# Define a dictionary for the 2 dataframes
|
|
37
|
+
my_dataframe_dict = {
|
|
38
|
+
"1 my_df": my_df1,
|
|
39
|
+
"2 my_df": my_df2,
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
# Export the dataframes to tableskill using the tableskill function
|
|
43
|
+
ts.tableskill(
|
|
44
|
+
dataframe_dict = my_dataframe_dict,
|
|
45
|
+
sub_folder_in_export = "tableskill_sample",
|
|
46
|
+
)
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
The above will generate flat files suitable for https://www.tableskill.com/ on your hard drive under
|
|
50
|
+
`~\<LAST_NAME>\temp\tableskill\<YYYYMMDD>\tableskill_sample\`
|
|
51
|
+
You can simply drag invidual files or an entire folder structure into TableSkill.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tableskill"
|
|
7
|
+
version = "0.3.0"
|
|
8
|
+
dependencies = ["polars>=1.0"]
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
|
+
authors = [{ name = "Walter Levy", email = "klwlevy@hotmail.com" }]
|
|
11
|
+
description = "A Python package to visualize tabular data via https://www.tableskill.com/"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
license = { file = "LICENSE" }
|
|
14
|
+
classifiers = ["Programming Language :: Python"]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Repository = "https://github.com/klwlevy/tableskill.git"
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.packages.find]
|
|
20
|
+
# All the following settings are optional:
|
|
21
|
+
where = ["src"] # ["."] by default
|
|
22
|
+
|
|
23
|
+
[project.optional-dependencies]
|
|
24
|
+
# extra dependencies regarding documentation, invoke by installing like this: tableskill[docs]
|
|
25
|
+
docs = ["mkdocs", "mkdocs-material", "mkdocstrings-python"]
|
|
26
|
+
dev = [
|
|
27
|
+
# Self referencing
|
|
28
|
+
"tableskill[docs]",
|
|
29
|
+
"black",
|
|
30
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from tableskill.tableskill import tableskill
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Standard library
|
|
2
|
+
from datetime import date
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
# Third party packages
|
|
6
|
+
import polars as pl
|
|
7
|
+
|
|
8
|
+
# Local modules
|
|
9
|
+
|
|
10
|
+
### FUNCTION -----------------------------------------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def tableskill(
|
|
14
|
+
dataframe_dict: dict[str, pl.DataFrame] = {"dataframe_name": pl.DataFrame()},
|
|
15
|
+
*,
|
|
16
|
+
sub_folder_in_export: str = "",
|
|
17
|
+
test_mode: bool = False,
|
|
18
|
+
) -> str:
|
|
19
|
+
"""
|
|
20
|
+
Converts a dictionary of Polars dataframes into csv files suitable for visualization in TableSkill.
|
|
21
|
+
(https://www.tableskill.com/)
|
|
22
|
+
|
|
23
|
+
Parameters
|
|
24
|
+
----------
|
|
25
|
+
dataframe_dict : dict[str, pl.DataFrame`]
|
|
26
|
+
Dictionary with DataFrames to export
|
|
27
|
+
|
|
28
|
+
sub_folder_in_export : str
|
|
29
|
+
sub_folder when exporting (optional)
|
|
30
|
+
|
|
31
|
+
Returns
|
|
32
|
+
-------
|
|
33
|
+
pathstring : str
|
|
34
|
+
string of path where flat files were exported
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
### SET CONSTANTS ------------------------------------------------------------------------------------------------------
|
|
39
|
+
if "USERPRINCIPALNAME" in os.environ:
|
|
40
|
+
user_surname = os.environ["USERPRINCIPALNAME"].split(".")[1].split("@")[0]
|
|
41
|
+
else:
|
|
42
|
+
user_surname = "DOE"
|
|
43
|
+
|
|
44
|
+
# Note sure who/what sets USERPRINCIPALNAME (email address), but here used to filter out surname
|
|
45
|
+
# user_surname = os.environ["USERPRINCIPALNAME"].split(".")[1].split("@")[0]
|
|
46
|
+
os.environ["USER_SURNAME"] = user_surname
|
|
47
|
+
|
|
48
|
+
export_folder = os.path.join(
|
|
49
|
+
# Path of home directory
|
|
50
|
+
os.path.expanduser("~"),
|
|
51
|
+
# environment variable USER_SURNAME, if it exists, otherwise empty string
|
|
52
|
+
os.environ.get("USER_SURNAME", ""),
|
|
53
|
+
# os.environ.get("USER_SURNAME", "Levy"),
|
|
54
|
+
# partial path
|
|
55
|
+
os.path.normpath("temp/tableskill"),
|
|
56
|
+
# Today's date as string with format yyyymmdd
|
|
57
|
+
date.today().strftime("%Y%m%d"),
|
|
58
|
+
os.path.normpath(sub_folder_in_export),
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
### EXPORT DATAFRAMES TO FLAT FILES ------------------------------------------------------------------------------------
|
|
62
|
+
if not os.path.exists(export_folder):
|
|
63
|
+
os.makedirs(export_folder)
|
|
64
|
+
|
|
65
|
+
for key, value in dataframe_dict.items():
|
|
66
|
+
# print("key = ", key, " and value = ", value)
|
|
67
|
+
export_filename = key
|
|
68
|
+
export_filename_suffix = ".csv"
|
|
69
|
+
export_filepath = os.path.join(
|
|
70
|
+
export_folder, export_filename + export_filename_suffix
|
|
71
|
+
)
|
|
72
|
+
# print("export_filpath = ", export_filepath)
|
|
73
|
+
value.write_csv(export_filepath)
|
|
74
|
+
|
|
75
|
+
### RETURN VALUE -------------------------------------------------------------------------------------------------------
|
|
76
|
+
|
|
77
|
+
# if test_mode:
|
|
78
|
+
|
|
79
|
+
return export_folder
|
|
80
|
+
# pass
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### TEST ---------------------------------------------------------------------------------------------------------------
|
|
84
|
+
if __name__ == "__main__":
|
|
85
|
+
|
|
86
|
+
from datetime import datetime
|
|
87
|
+
|
|
88
|
+
# Create two dataframes from scratch
|
|
89
|
+
my_df1 = pl.DataFrame(
|
|
90
|
+
{
|
|
91
|
+
"integer": [1, 2, 3],
|
|
92
|
+
"date": [
|
|
93
|
+
datetime(2025, 1, 1),
|
|
94
|
+
datetime(2025, 1, 2),
|
|
95
|
+
datetime(2025, 1, 3),
|
|
96
|
+
],
|
|
97
|
+
"float": [4.1, 5.2, 6.3],
|
|
98
|
+
"string": ["a", "b", "c"],
|
|
99
|
+
}
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
my_df2 = pl.DataFrame(
|
|
103
|
+
{
|
|
104
|
+
"an_integer": range(10),
|
|
105
|
+
}
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
# Define a dictionary for the 2 dataframes
|
|
109
|
+
my_dataframe_dict = {
|
|
110
|
+
"1 my_df1": my_df1,
|
|
111
|
+
"2 my_df2": my_df2,
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
# Export the dataframes to tableskill using the function defined here
|
|
115
|
+
test_call = tableskill(
|
|
116
|
+
dataframe_dict=my_dataframe_dict,
|
|
117
|
+
sub_folder_in_export="tableskill",
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
print("test_call = ", test_call)
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tableskill
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: A Python package to visualize tabular data via https://www.tableskill.com/
|
|
5
|
+
Author-email: Walter Levy <klwlevy@hotmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Walter Levy <klwlevy@hotmail.com> and contributors
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
Project-URL: Repository, https://github.com/klwlevy/tableskill.git
|
|
28
|
+
Classifier: Programming Language :: Python
|
|
29
|
+
Requires-Python: >=3.11
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
License-File: LICENSE
|
|
32
|
+
Requires-Dist: polars>=1.0
|
|
33
|
+
Provides-Extra: docs
|
|
34
|
+
Requires-Dist: mkdocs; extra == "docs"
|
|
35
|
+
Requires-Dist: mkdocs-material; extra == "docs"
|
|
36
|
+
Requires-Dist: mkdocstrings-python; extra == "docs"
|
|
37
|
+
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: tableskill[docs]; extra == "dev"
|
|
39
|
+
Requires-Dist: black; extra == "dev"
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# TableSkill
|
|
43
|
+
|
|
44
|
+
Python package for visualization of tabular data via https://www.tableskill.com/
|
|
45
|
+
Specifically, polars (https://pola.rs/) dataframes are supported.
|
|
46
|
+
|
|
47
|
+
# Usage:
|
|
48
|
+
|
|
49
|
+
You can comfortably visualize your polars dataframes in tableskill as in this self-contained example:
|
|
50
|
+
```python
|
|
51
|
+
|
|
52
|
+
import tableskill as ts
|
|
53
|
+
import polars as pl
|
|
54
|
+
|
|
55
|
+
from datetime import datetime
|
|
56
|
+
|
|
57
|
+
# Create two dataframes from scratch
|
|
58
|
+
my_df1 = pl.DataFrame(
|
|
59
|
+
{
|
|
60
|
+
"integer": [1, 2, 3],
|
|
61
|
+
"date": [
|
|
62
|
+
datetime(2025, 1, 1),
|
|
63
|
+
datetime(2025, 1, 2),
|
|
64
|
+
datetime(2025, 1, 3),
|
|
65
|
+
],
|
|
66
|
+
"float": [4.1, 5.2, 6.3],
|
|
67
|
+
"string": ["a", "b", "c"],
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
my_df2 = pl.DataFrame(
|
|
72
|
+
{
|
|
73
|
+
"an_integer": range(10),
|
|
74
|
+
}
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
# Define a dictionary for the 2 dataframes
|
|
78
|
+
my_dataframe_dict = {
|
|
79
|
+
"1 my_df": my_df1,
|
|
80
|
+
"2 my_df": my_df2,
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
# Export the dataframes to tableskill using the tableskill function
|
|
84
|
+
ts.tableskill(
|
|
85
|
+
dataframe_dict = my_dataframe_dict,
|
|
86
|
+
sub_folder_in_export = "tableskill_sample",
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
The above will generate flat files suitable for https://www.tableskill.com/ on your hard drive under
|
|
91
|
+
`~\<LAST_NAME>\temp\tableskill\<YYYYMMDD>\tableskill_sample\`
|
|
92
|
+
You can simply drag invidual files or an entire folder structure into TableSkill.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/tableskill/__init__.py
|
|
5
|
+
src/tableskill/tableskill.py
|
|
6
|
+
src/tableskill.egg-info/PKG-INFO
|
|
7
|
+
src/tableskill.egg-info/SOURCES.txt
|
|
8
|
+
src/tableskill.egg-info/dependency_links.txt
|
|
9
|
+
src/tableskill.egg-info/requires.txt
|
|
10
|
+
src/tableskill.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tableskill
|