https://github.com/itzvinoth/csv2table
https://github.com/itzvinoth/csv2table
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itzvinoth/csv2table
- Owner: itzvinoth
- Created: 2020-07-12T12:59:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-07T07:16:00.000Z (over 5 years ago)
- Last Synced: 2025-03-26T16:27:10.503Z (over 1 year ago)
- Language: Go
- Size: 4.76 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# csv2table (Not finished)
Command-line utility to convert CSV files to searchable and
sortable HTML table. Supports large datasets and horizontal scrolling for large number of columns. This is just a copycat of ([csvtotable](https://github.com/vividvilla/csvtotable/)) utility written in python. Only for learning purpose — doing this utility library in golang.
**Can't use for now.**
## Run command
`csv2table -csv=example.csv --serve`
## Usage
```
-h or --help Used to print the list of arguments
--serve Open html output in a web browser.
-csv=table.csv Mention csv file name.
-save=output.html Mention html filename to save the output, .
-dl=20 Number of rows to show by default. Defaults to 20 (show all rows when -1 or 0).
-pagination=false Enable/disable pagination. Enabled by default.
-colvis=true Enable/disable Column visualisation. Disabled by default.
```