csvtojsonify 1.0.0__py3-none-any.whl

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.
File without changes
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: csvtojsonify
3
+ Version: 1.0.0
4
+ Summary: A tool to convert CSV files to JSON.
5
+ Home-page: https://github.com/sriramsreedhar/csvtojsonify
6
+ Author: Sriram Sreedhar
7
+ Author-email: sriramsreedhar003@gmail.com
8
+ Requires-Python: >=3.9.6
9
+ Description-Content-Type: text/markdown
10
+
11
+ # csvtojsonify
12
+
13
+ A simple tool to convert CSV files to JSON format.
14
+
15
+ ## Usage
16
+
17
+ Simply run `csvtojsonify` it will prompt you to enter input CSV file with .csv file extension and output JSON file with .json file extension.
18
+
19
+ ##Sample Run
20
+ (venv-3.12) % python3 csvtojsonify.py
21
+ Enter the input CSV file name: somefile.csv
22
+ Enter the output JSON file name: results.json
23
+ Conversion successful! The new JSON file is results.json
24
+ (venv-3.12) %
@@ -0,0 +1,6 @@
1
+ csvtojsonify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ csvtojsonify-1.0.0.dist-info/METADATA,sha256=oJ3YT_job8rfSjphA7MTCCD9lXxReKpG6TH4voD9MIo,728
3
+ csvtojsonify-1.0.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
4
+ csvtojsonify-1.0.0.dist-info/entry_points.txt,sha256=HSJCOZam1dzE02eF8A-6DWqE2zCFmGF70k6g9V16DHE,64
5
+ csvtojsonify-1.0.0.dist-info/top_level.txt,sha256=Ny_uE8N58ddKuZ87M4cg0ujgBGWTQts6nZu713vSZGE,13
6
+ csvtojsonify-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ csvtojsonify = csvtojsonify.csvtojsonify:main
@@ -0,0 +1 @@
1
+ csvtojsonify