New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

sttable

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sttable

Parser of string representation tables


Maintainers
1
Welcome to sttable's documentation!

Parser of string representation tables, input example::

  header_1st_col   | header_2nd_col   |\n
  row_1_of_1st_col | row_1_of_2nd_col |\n
  row_2_of_1st_col | row_2_of_2nd_col |

Parsed information can be accessed by rows::

[{'header_1st_col': 'row_1_of_1st_col', 'header_2nd_col': 'row_1_of_2nd_col'},
 {'header_1st_col': 'row_2_of_1st_col', 'header_2nd_col': 'row_2_of_2nd_col'}]

As well as by columns::

{'header_1st_col': ['row_1_of_1st_col', 'row_2_of_1st_col'],
  header_2nd_col': ['row_1_of_2nd_col', 'row_2_of_2nd_col']}

Fields::

['header_1st_col', 'header_2nd_col', 'header_3rd_col']

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