csvtojsonify 1.0.1__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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: csvtojsonify
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: A Python script to convert CSV to JSON
|
|
5
|
+
Home-page: https://github.com/sriramsreedhar/csvtojsonify
|
|
6
|
+
Author: csvtojsonify
|
|
7
|
+
Author-email: sriramsreedhar003@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: pandas
|
|
14
|
+
|
|
15
|
+
# csvtojsonify
|
|
16
|
+
|
|
17
|
+
A simple tool to convert CSV files to JSON format.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
Simply run `csvtojsonify` it will prompt you to enter input CSV file with .csv file extension and output JSON file with .json file extension.
|
|
22
|
+
|
|
23
|
+
##Sample Run
|
|
24
|
+
(venv-3.12) % python3 csvtojsonify.py
|
|
25
|
+
Enter the input CSV file name: somefile.csv
|
|
26
|
+
Enter the output JSON file name: results.json
|
|
27
|
+
Conversion successful! The new JSON file is results.json
|
|
28
|
+
(venv-3.12) %
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
csvtojsonify-1.0.1.dist-info/METADATA,sha256=KqtncmMsn0XH57lLA2RNcVYp6gjDhxxn1uKnYbe_Xd0,894
|
|
2
|
+
csvtojsonify-1.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
3
|
+
csvtojsonify-1.0.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
4
|
+
csvtojsonify-1.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|