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.
@@ -0,0 +1,2 @@
1
+ include README.md LICENSE
2
+ recursive-include docs *.png
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: csvtojsonify
3
- Version: 2.0.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
+ ![Web UI: CSV input on the left, formatted JSON on the right](https://raw.githubusercontent.com/sriramsreedhar/csvtojsonify/main/docs/web-ui.png)
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
- 5. Build artifacts:
79
+ 4. Build artifacts:
78
80
 
79
81
  ```bash
80
82
  python -m build
81
83
  ```
82
84
 
83
- 6. Upload to the **test** index first (recommended):
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
- 7. Upload to **production** PyPI:
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
+ ![Web UI: CSV input on the left, formatted JSON on the right](https://raw.githubusercontent.com/sriramsreedhar/csvtojsonify/main/docs/web-ui.png)
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
- 5. Build artifacts:
55
+ 4. Build artifacts:
54
56
 
55
57
  ```bash
56
58
  python -m build
57
59
  ```
58
60
 
59
- 6. Upload to the **test** index first (recommended):
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
- 7. Upload to **production** PyPI:
69
+ 6. Upload to **production** PyPI:
68
70
 
69
71
  ```bash
70
72
  python -m twine upload dist/*
Binary file
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "csvtojsonify"
7
- version = "2.0.0"
7
+ version = "2.0.1"
8
8
  description = "Convert CSV text to JSON — library, CLI, and optional web UI"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -4,4 +4,4 @@ from csvtojsonify.core import ConversionError, csv_rows, csv_to_json
4
4
 
5
5
  __all__ = ["ConversionError", "csv_rows", "csv_to_json", "__version__"]
6
6
 
7
- __version__ = "2.0.0"
7
+ __version__ = "2.0.1"
@@ -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.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.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
+ ![Web UI: CSV input on the left, formatted JSON on the right](https://raw.githubusercontent.com/sriramsreedhar/csvtojsonify/main/docs/web-ui.png)
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
- 5. Build artifacts:
79
+ 4. Build artifacts:
78
80
 
79
81
  ```bash
80
82
  python -m build
81
83
  ```
82
84
 
83
- 6. Upload to the **test** index first (recommended):
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
- 7. Upload to **production** PyPI:
93
+ 6. Upload to **production** PyPI:
92
94
 
93
95
  ```bash
94
96
  python -m twine upload dist/*
@@ -1,6 +1,8 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
3
4
  pyproject.toml
5
+ docs/web-ui.png
4
6
  src/csvtojsonify/__init__.py
5
7
  src/csvtojsonify/cli.py
6
8
  src/csvtojsonify/core.py
File without changes
File without changes