TestDataX 0.1.0__tar.gz → 0.1.1__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.
- {testdatax-0.1.0 → testdatax-0.1.1}/PKG-INFO +9 -32
- {testdatax-0.1.0 → testdatax-0.1.1}/README.md +8 -31
- {testdatax-0.1.0 → testdatax-0.1.1}/pyproject.toml +14 -1
- {testdatax-0.1.0 → testdatax-0.1.1}/src/__init__.py +1 -1
- {testdatax-0.1.0 → testdatax-0.1.1}/LICENSE +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/cli.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/__init__.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/base_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/csv_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/json_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/mssql_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/mysql_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/oracle_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/orc_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/parquet_exporter.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/__init__.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/chunker.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/constants.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/exporter_config.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/formatters.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/generator.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/__init__.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/base.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/faker_provider.py +0 -0
- {testdatax-0.1.0 → testdatax-0.1.1}/src/schemas.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: TestDataX
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A flexible test data generation toolkit
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: JamesPBrett
|
|
@@ -21,6 +21,8 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# TestDataX
|
|
23
23
|
|
|
24
|
+
# TestDataX
|
|
25
|
+
|
|
24
26
|

|
|
25
27
|
[](https://codecov.io/gh/JamesPBrett/testdatax)
|
|
26
28
|

|
|
@@ -30,40 +32,16 @@ This command-line interface application enables quick and customizable test data
|
|
|
30
32
|
|
|
31
33
|
## Requirements
|
|
32
34
|
- Python 3.11+
|
|
33
|
-
- Additional dependencies are handled automatically by poetry
|
|
34
|
-
|
|
35
|
-
## Installation
|
|
36
35
|
|
|
37
|
-
|
|
36
|
+
## Quick Start
|
|
38
37
|
|
|
39
38
|
```bash
|
|
40
|
-
# Install
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
# Install Poetry
|
|
44
|
-
curl -sSL https://install.python-poetry.org | python3 -
|
|
45
|
-
|
|
46
|
-
# Verify Poetry installation
|
|
47
|
-
poetry --version
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
### Install
|
|
51
|
-
|
|
52
|
-
```bash
|
|
53
|
-
# Clone the repository
|
|
54
|
-
git clone https://github.com/JamesPBrett/testdatax.git
|
|
55
|
-
cd testdatax
|
|
56
|
-
|
|
57
|
-
# Install dependencies
|
|
58
|
-
poetry install
|
|
59
|
-
```
|
|
39
|
+
# Install from PyPI
|
|
40
|
+
pip install testdatax
|
|
60
41
|
|
|
61
|
-
|
|
42
|
+
# Generate sample data
|
|
43
|
+
testdatax --rows 1000 --format json --output data.json
|
|
62
44
|
|
|
63
|
-
- If Poetry is not found in PATH:
|
|
64
|
-
```bash
|
|
65
|
-
export PATH="$HOME/.local/bin:$PATH"
|
|
66
|
-
```
|
|
67
45
|
|
|
68
46
|
## Features
|
|
69
47
|
|
|
@@ -71,7 +49,7 @@ poetry install
|
|
|
71
49
|
- Support for multiple output formats (CSV, JSON, SQL, etc.)
|
|
72
50
|
- Customizable schema definitions
|
|
73
51
|
- Configurable data generation parameters
|
|
74
|
-
- CLI tool for easy data generation
|
|
52
|
+
- CLI tool for easy test data generation
|
|
75
53
|
|
|
76
54
|
## Supported Formats
|
|
77
55
|
|
|
@@ -341,5 +319,4 @@ The generator supports Faker providers for generating realistic data:
|
|
|
341
319
|
## License
|
|
342
320
|
|
|
343
321
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
344
|
-
# Test change
|
|
345
322
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# TestDataX
|
|
2
2
|
|
|
3
|
+
# TestDataX
|
|
4
|
+
|
|
3
5
|

|
|
4
6
|
[](https://codecov.io/gh/JamesPBrett/testdatax)
|
|
5
7
|

|
|
@@ -9,40 +11,16 @@ This command-line interface application enables quick and customizable test data
|
|
|
9
11
|
|
|
10
12
|
## Requirements
|
|
11
13
|
- Python 3.11+
|
|
12
|
-
- Additional dependencies are handled automatically by poetry
|
|
13
|
-
|
|
14
|
-
## Installation
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
## Quick Start
|
|
17
16
|
|
|
18
17
|
```bash
|
|
19
|
-
# Install
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# Install Poetry
|
|
23
|
-
curl -sSL https://install.python-poetry.org | python3 -
|
|
24
|
-
|
|
25
|
-
# Verify Poetry installation
|
|
26
|
-
poetry --version
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### Install
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
# Clone the repository
|
|
33
|
-
git clone https://github.com/JamesPBrett/testdatax.git
|
|
34
|
-
cd testdatax
|
|
35
|
-
|
|
36
|
-
# Install dependencies
|
|
37
|
-
poetry install
|
|
38
|
-
```
|
|
18
|
+
# Install from PyPI
|
|
19
|
+
pip install testdatax
|
|
39
20
|
|
|
40
|
-
|
|
21
|
+
# Generate sample data
|
|
22
|
+
testdatax --rows 1000 --format json --output data.json
|
|
41
23
|
|
|
42
|
-
- If Poetry is not found in PATH:
|
|
43
|
-
```bash
|
|
44
|
-
export PATH="$HOME/.local/bin:$PATH"
|
|
45
|
-
```
|
|
46
24
|
|
|
47
25
|
## Features
|
|
48
26
|
|
|
@@ -50,7 +28,7 @@ poetry install
|
|
|
50
28
|
- Support for multiple output formats (CSV, JSON, SQL, etc.)
|
|
51
29
|
- Customizable schema definitions
|
|
52
30
|
- Configurable data generation parameters
|
|
53
|
-
- CLI tool for easy data generation
|
|
31
|
+
- CLI tool for easy test data generation
|
|
54
32
|
|
|
55
33
|
## Supported Formats
|
|
56
34
|
|
|
@@ -320,4 +298,3 @@ The generator supports Faker providers for generating realistic data:
|
|
|
320
298
|
## License
|
|
321
299
|
|
|
322
300
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
323
|
-
# Test change
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "TestDataX"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "A flexible test data generation toolkit"
|
|
5
5
|
authors = ["JamesPBrett"]
|
|
6
6
|
license = "MIT"
|
|
@@ -177,7 +177,20 @@ upload_to_repository = true
|
|
|
177
177
|
repository = "pypi"
|
|
178
178
|
tag_commit = true
|
|
179
179
|
tag_format = "v{version}"
|
|
180
|
+
major_on_zero = false # Prevents 0.x.x to 1.0.0 on breaking changes
|
|
181
|
+
allow_zero_version = true
|
|
180
182
|
commit_message = "chore(release): v{version}"
|
|
183
|
+
commit_types = [
|
|
184
|
+
{ type = "feat", section = "Features", bump = "minor" },
|
|
185
|
+
{ type = "fix", section = "Bug Fixes", bump = "patch" },
|
|
186
|
+
{ type = "breaking", section = "Breaking Changes", bump = "major" },
|
|
187
|
+
{ type = "perf", section = "Performance", bump = "patch" },
|
|
188
|
+
{ type = "refactor", section = "Refactoring", bump = "patch" },
|
|
189
|
+
{ type = "docs", section = "Documentation", bump = false },
|
|
190
|
+
{ type = "chore", section = "Maintenance", bump = false },
|
|
191
|
+
{ type = "ci", section = "CI/CD", bump = false },
|
|
192
|
+
{ type = "build", section = "Build", bump = false }
|
|
193
|
+
]
|
|
181
194
|
|
|
182
195
|
[tool.semantic_release.changelog]
|
|
183
196
|
template_dir = "templates"
|
|
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
|
|
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
|
|
File without changes
|