Socket
Socket
Sign inDemoInstall

table-generator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table-generator

Generates code for html table from csv files


Maintainers
1

Table Generator

Python package for generating html code for tables from csv files.

Installation

Install Using git

If you wish to run this file from the command line I suggest you use the scripts from the repo at https://github.com/lol-cubes/table-generator

git clone https://github.com/lol-cubes/table_generator.git

Installl Using pip

pip install table_generator

Usage:

generate_html

Args:

file (str) - path to file containing csv table

complete_file (bool) - whether or not to add html elements to make code function as a separate file

header (bool) - whether or not to turn first row of csv values into <th> tags

pretty (bool) - whether or not to prettify the output code

attrs (dict) - html attributes mapped to corresponding values

Example usage:

from table_generator import generate_html

html_table = generate_html('data.csv', False, True, True, True, 
                           {"class": "table", "id": "data-table"})

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc