csvtojsonify 2.0.0__tar.gz → 2.0.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.
- csvtojsonify-2.0.1/MANIFEST.in +2 -0
- {csvtojsonify-2.0.0/src/csvtojsonify.egg-info → csvtojsonify-2.0.1}/PKG-INFO +6 -4
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/README.md +5 -3
- csvtojsonify-2.0.1/docs/web-ui.png +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/pyproject.toml +1 -1
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/__init__.py +1 -1
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/web/app.py +1 -1
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1/src/csvtojsonify.egg-info}/PKG-INFO +6 -4
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify.egg-info/SOURCES.txt +2 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/LICENSE +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/setup.cfg +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/cli.py +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/core.py +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/web/__init__.py +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify/web/static/index.html +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify.egg-info/dependency_links.txt +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify.egg-info/entry_points.txt +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify.egg-info/requires.txt +0 -0
- {csvtojsonify-2.0.0 → csvtojsonify-2.0.1}/src/csvtojsonify.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: csvtojsonify
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Convert CSV text to JSON — library, CLI, and optional web UI
|
|
5
5
|
Author-email: Sriram Sreedhar <sriramsreedhar003@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -69,18 +69,20 @@ csvtojsonify-web
|
|
|
69
69
|
|
|
70
70
|
Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
71
71
|
|
|
72
|
+

|
|
73
|
+
|
|
72
74
|
## Publishing to PyPI (maintainers)
|
|
73
75
|
|
|
74
76
|
1. [Create a PyPI account](https://pypi.org/account/register/) and [API token](https://pypi.org/manage/account/token/) (scope: entire account or this project only).
|
|
75
77
|
2. Install build tools: `pip install build twine`
|
|
76
78
|
3. Bump the `version` in `pyproject.toml` (and `__version__` in `src/csvtojsonify/__init__.py`) to a **new** number; PyPI rejects re-uploading the same version.
|
|
77
|
-
|
|
79
|
+
4. Build artifacts:
|
|
78
80
|
|
|
79
81
|
```bash
|
|
80
82
|
python -m build
|
|
81
83
|
```
|
|
82
84
|
|
|
83
|
-
|
|
85
|
+
5. Upload to the **test** index first (recommended):
|
|
84
86
|
|
|
85
87
|
```bash
|
|
86
88
|
python -m twine upload --repository testpypi dist/*
|
|
@@ -88,7 +90,7 @@ Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
|
88
90
|
|
|
89
91
|
Verify: `pip install -i https://test.pypi.org/simple/ csvtojsonify`
|
|
90
92
|
|
|
91
|
-
|
|
93
|
+
6. Upload to **production** PyPI:
|
|
92
94
|
|
|
93
95
|
```bash
|
|
94
96
|
python -m twine upload dist/*
|
|
@@ -45,18 +45,20 @@ csvtojsonify-web
|
|
|
45
45
|
|
|
46
46
|
Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
47
47
|
|
|
48
|
+

|
|
49
|
+
|
|
48
50
|
## Publishing to PyPI (maintainers)
|
|
49
51
|
|
|
50
52
|
1. [Create a PyPI account](https://pypi.org/account/register/) and [API token](https://pypi.org/manage/account/token/) (scope: entire account or this project only).
|
|
51
53
|
2. Install build tools: `pip install build twine`
|
|
52
54
|
3. Bump the `version` in `pyproject.toml` (and `__version__` in `src/csvtojsonify/__init__.py`) to a **new** number; PyPI rejects re-uploading the same version.
|
|
53
|
-
|
|
55
|
+
4. Build artifacts:
|
|
54
56
|
|
|
55
57
|
```bash
|
|
56
58
|
python -m build
|
|
57
59
|
```
|
|
58
60
|
|
|
59
|
-
|
|
61
|
+
5. Upload to the **test** index first (recommended):
|
|
60
62
|
|
|
61
63
|
```bash
|
|
62
64
|
python -m twine upload --repository testpypi dist/*
|
|
@@ -64,7 +66,7 @@ Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
|
64
66
|
|
|
65
67
|
Verify: `pip install -i https://test.pypi.org/simple/ csvtojsonify`
|
|
66
68
|
|
|
67
|
-
|
|
69
|
+
6. Upload to **production** PyPI:
|
|
68
70
|
|
|
69
71
|
```bash
|
|
70
72
|
python -m twine upload dist/*
|
|
Binary file
|
|
@@ -12,7 +12,7 @@ from csvtojsonify.core import ConversionError, csv_to_json
|
|
|
12
12
|
|
|
13
13
|
_STATIC = Path(__file__).resolve().parent / "static"
|
|
14
14
|
|
|
15
|
-
app = FastAPI(title="csvtojsonify", version="2.0.
|
|
15
|
+
app = FastAPI(title="csvtojsonify", version="2.0.1")
|
|
16
16
|
app.add_middleware(
|
|
17
17
|
CORSMiddleware,
|
|
18
18
|
allow_origins=["*"],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: csvtojsonify
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Convert CSV text to JSON — library, CLI, and optional web UI
|
|
5
5
|
Author-email: Sriram Sreedhar <sriramsreedhar003@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -69,18 +69,20 @@ csvtojsonify-web
|
|
|
69
69
|
|
|
70
70
|
Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
71
71
|
|
|
72
|
+

|
|
73
|
+
|
|
72
74
|
## Publishing to PyPI (maintainers)
|
|
73
75
|
|
|
74
76
|
1. [Create a PyPI account](https://pypi.org/account/register/) and [API token](https://pypi.org/manage/account/token/) (scope: entire account or this project only).
|
|
75
77
|
2. Install build tools: `pip install build twine`
|
|
76
78
|
3. Bump the `version` in `pyproject.toml` (and `__version__` in `src/csvtojsonify/__init__.py`) to a **new** number; PyPI rejects re-uploading the same version.
|
|
77
|
-
|
|
79
|
+
4. Build artifacts:
|
|
78
80
|
|
|
79
81
|
```bash
|
|
80
82
|
python -m build
|
|
81
83
|
```
|
|
82
84
|
|
|
83
|
-
|
|
85
|
+
5. Upload to the **test** index first (recommended):
|
|
84
86
|
|
|
85
87
|
```bash
|
|
86
88
|
python -m twine upload --repository testpypi dist/*
|
|
@@ -88,7 +90,7 @@ Open http://127.0.0.1:8765 — paste CSV on the left, JSON appears on the right.
|
|
|
88
90
|
|
|
89
91
|
Verify: `pip install -i https://test.pypi.org/simple/ csvtojsonify`
|
|
90
92
|
|
|
91
|
-
|
|
93
|
+
6. Upload to **production** PyPI:
|
|
92
94
|
|
|
93
95
|
```bash
|
|
94
96
|
python -m twine upload dist/*
|
|
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
|