dbworkload 0.6.0__tar.gz → 0.6.2__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.
- dbworkload-0.6.2/PKG-INFO +54 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/cli/main.py +3 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/pyproject.toml +21 -21
- dbworkload-0.6.0/PKG-INFO +0 -53
- {dbworkload-0.6.0 → dbworkload-0.6.2}/LICENSE +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/README.md +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/__init__.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/cli/dep.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/cli/util.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/models/run.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/models/util.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/templates/stub.j2 +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/utils/common.py +0 -0
- {dbworkload-0.6.0 → dbworkload-0.6.2}/dbworkload/utils/simplefaker.py +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dbworkload
|
|
3
|
+
Version: 0.6.2
|
|
4
|
+
Summary: Workload framework
|
|
5
|
+
Home-page: https://dbworkload.github.io/dbworkload/
|
|
6
|
+
License: GPLv3+
|
|
7
|
+
Author: Fabio Ghirardello
|
|
8
|
+
Requires-Python: >=3.8,<4.0
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
10
|
+
Classifier: License :: Other/Proprietary License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Provides-Extra: all
|
|
20
|
+
Provides-Extra: cassandra
|
|
21
|
+
Provides-Extra: mariadb
|
|
22
|
+
Provides-Extra: mongo
|
|
23
|
+
Provides-Extra: mysql
|
|
24
|
+
Provides-Extra: odbc
|
|
25
|
+
Provides-Extra: oracle
|
|
26
|
+
Provides-Extra: postgres
|
|
27
|
+
Provides-Extra: spanner
|
|
28
|
+
Requires-Dist: cassandra-driver ; extra == "all" or extra == "cassandra"
|
|
29
|
+
Requires-Dist: google-cloud-spanner ; extra == "all" or extra == "spanner"
|
|
30
|
+
Requires-Dist: jinja2
|
|
31
|
+
Requires-Dist: mariadb ; extra == "all" or extra == "mariadb"
|
|
32
|
+
Requires-Dist: mysql-connector-python ; extra == "all" or extra == "mysql"
|
|
33
|
+
Requires-Dist: numpy
|
|
34
|
+
Requires-Dist: oracledb ; extra == "all" or extra == "oracle"
|
|
35
|
+
Requires-Dist: pandas
|
|
36
|
+
Requires-Dist: plotext
|
|
37
|
+
Requires-Dist: plotly
|
|
38
|
+
Requires-Dist: prometheus-client
|
|
39
|
+
Requires-Dist: psycopg ; extra == "all" or extra == "postgres"
|
|
40
|
+
Requires-Dist: psycopg-binary ; extra == "all" or extra == "postgres"
|
|
41
|
+
Requires-Dist: pymongo ; extra == "all" or extra == "mongo"
|
|
42
|
+
Requires-Dist: pyodbc ; extra == "all" or extra == "odbc"
|
|
43
|
+
Requires-Dist: pytdigest
|
|
44
|
+
Requires-Dist: pyyaml
|
|
45
|
+
Requires-Dist: sqlparse
|
|
46
|
+
Requires-Dist: tabulate
|
|
47
|
+
Requires-Dist: typer[all]
|
|
48
|
+
Project-URL: Repository, https://github.com/dbworkload/dbworkload
|
|
49
|
+
Description-Content-Type: text/markdown
|
|
50
|
+
|
|
51
|
+
# dbworkload - DBMS workload utility
|
|
52
|
+
|
|
53
|
+
Visit the [online documentation](https://dbworkload.github.io/dbworkload/).
|
|
54
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "dbworkload"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.2"
|
|
4
4
|
description = "Workload framework"
|
|
5
5
|
authors = ["Fabio Ghirardello"]
|
|
6
6
|
license = "GPLv3+"
|
|
@@ -18,26 +18,26 @@ dbworkload = 'dbworkload.cli.main:app'
|
|
|
18
18
|
|
|
19
19
|
[tool.poetry.dependencies]
|
|
20
20
|
python = "^3.8"
|
|
21
|
-
pandas = "
|
|
22
|
-
tabulate = "
|
|
23
|
-
numpy = "
|
|
24
|
-
prometheus-client = "
|
|
25
|
-
pyyaml = "
|
|
26
|
-
typer = {extras = ["all"], version = "
|
|
27
|
-
cassandra-driver = {version = "
|
|
28
|
-
mysql-connector-python = {version = "
|
|
29
|
-
oracledb = {version = "
|
|
30
|
-
psycopg = {version = "
|
|
31
|
-
psycopg-binary = {version = "
|
|
32
|
-
pymongo = {version = "
|
|
33
|
-
pyodbc = {version = "
|
|
34
|
-
mariadb = {version = "
|
|
35
|
-
google-cloud-spanner = {version = "
|
|
36
|
-
pytdigest = "
|
|
37
|
-
plotext = "
|
|
38
|
-
plotly = "
|
|
39
|
-
jinja2 = "
|
|
40
|
-
sqlparse = "
|
|
21
|
+
pandas = "*"
|
|
22
|
+
tabulate = "*"
|
|
23
|
+
numpy = "*"
|
|
24
|
+
prometheus-client = "*"
|
|
25
|
+
pyyaml = "*"
|
|
26
|
+
typer = {extras = ["all"], version = "*"}
|
|
27
|
+
cassandra-driver = {version = "*", optional = true}
|
|
28
|
+
mysql-connector-python = {version = "*", optional = true}
|
|
29
|
+
oracledb = {version = "*", optional = true}
|
|
30
|
+
psycopg = {version = "*", optional = true}
|
|
31
|
+
psycopg-binary = {version = "*", optional = true}
|
|
32
|
+
pymongo = {version = "*", optional = true}
|
|
33
|
+
pyodbc = {version = "*", optional = true}
|
|
34
|
+
mariadb = {version = "*", optional = true}
|
|
35
|
+
google-cloud-spanner = {version = "*", optional = true}
|
|
36
|
+
pytdigest = "*"
|
|
37
|
+
plotext = "*"
|
|
38
|
+
plotly = "*"
|
|
39
|
+
jinja2 = "*"
|
|
40
|
+
sqlparse = "*"
|
|
41
41
|
|
|
42
42
|
[tool.poetry.extras]
|
|
43
43
|
all = ["psycopg", "psycopg-binary", "mysql-connector-python", "mariadb", "oracledb", "pyodbc", "pymongo", "cassandra-driver", "google-cloud-spanner"]
|
dbworkload-0.6.0/PKG-INFO
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: dbworkload
|
|
3
|
-
Version: 0.6.0
|
|
4
|
-
Summary: Workload framework
|
|
5
|
-
Home-page: https://dbworkload.github.io/dbworkload/
|
|
6
|
-
License: GPLv3+
|
|
7
|
-
Author: Fabio Ghirardello
|
|
8
|
-
Requires-Python: >=3.8,<4.0
|
|
9
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
10
|
-
Classifier: License :: Other/Proprietary License
|
|
11
|
-
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Provides-Extra: all
|
|
19
|
-
Provides-Extra: cassandra
|
|
20
|
-
Provides-Extra: mariadb
|
|
21
|
-
Provides-Extra: mongo
|
|
22
|
-
Provides-Extra: mysql
|
|
23
|
-
Provides-Extra: odbc
|
|
24
|
-
Provides-Extra: oracle
|
|
25
|
-
Provides-Extra: postgres
|
|
26
|
-
Provides-Extra: spanner
|
|
27
|
-
Requires-Dist: cassandra-driver (>=3.29.1,<4.0.0) ; extra == "all" or extra == "cassandra"
|
|
28
|
-
Requires-Dist: google-cloud-spanner (>=3.49.1,<4.0.0) ; extra == "all" or extra == "spanner"
|
|
29
|
-
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
|
30
|
-
Requires-Dist: mariadb (>=1.1.10,<2.0.0) ; extra == "all" or extra == "mariadb"
|
|
31
|
-
Requires-Dist: mysql-connector-python (>=8.4.0,<9.0.0) ; extra == "all" or extra == "mysql"
|
|
32
|
-
Requires-Dist: numpy (>=1.23.5,<2.0.0)
|
|
33
|
-
Requires-Dist: oracledb (>=2.2.0,<3.0.0) ; extra == "all" or extra == "oracle"
|
|
34
|
-
Requires-Dist: pandas (>=1.5.2,<2.0.0)
|
|
35
|
-
Requires-Dist: plotext (>=5.2.8,<6.0.0)
|
|
36
|
-
Requires-Dist: plotly (>=5.24.0,<6.0.0)
|
|
37
|
-
Requires-Dist: prometheus-client (>=0.15.0,<0.16.0)
|
|
38
|
-
Requires-Dist: psycopg (>=3.1.19,<4.0.0) ; extra == "all" or extra == "postgres"
|
|
39
|
-
Requires-Dist: psycopg-binary (>=3.1.19,<4.0.0) ; extra == "all" or extra == "postgres"
|
|
40
|
-
Requires-Dist: pymongo (>=4.7.2,<5.0.0) ; extra == "all" or extra == "mongo"
|
|
41
|
-
Requires-Dist: pyodbc (>=5.1.0,<6.0.0) ; extra == "all" or extra == "odbc"
|
|
42
|
-
Requires-Dist: pytdigest (>=0.1.4,<0.2.0)
|
|
43
|
-
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
44
|
-
Requires-Dist: sqlparse (>=0.5.1,<0.6.0)
|
|
45
|
-
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
|
46
|
-
Requires-Dist: typer[all] (>=0.7.0,<0.8.0)
|
|
47
|
-
Project-URL: Repository, https://github.com/dbworkload/dbworkload
|
|
48
|
-
Description-Content-Type: text/markdown
|
|
49
|
-
|
|
50
|
-
# dbworkload - DBMS workload utility
|
|
51
|
-
|
|
52
|
-
Visit the [online documentation](https://dbworkload.github.io/dbworkload/).
|
|
53
|
-
|
|
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
|
|
File without changes
|