Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Print a list of python dicts as an organized table.
The code is mostly copied from
this <http://stackoverflow.com/a/5087336>
__ Stack Overflow comment
with the following additions: - customization of the top and bottom line
characters - customization of the alignment ('left' or 'right') -
automatic truncation of text that is longer than the column width with
ellipses ('...') - ability to receive a separate data set that will be
printed as a totals row at the bottom of the table by passing optional
argument
pip install table_printer
::
from table_printer import TablePrinter
fmt = [
('Title', 'title', 50, 'left'),
('Description', 'description', 50, 'right'),
]
data = [{'title': 'Hello', 'description': 'World'}]
totals = {'title': 'TOTAL', '1 title'}
print TablePrinter(fmt, sep='|', ul='=', tl='-', bl='_')(data, totals)
Output
::
--------------------------------------------------|--------------------------------------------------
Title | Description
==================================================|==================================================
Hello | World
==================================================|==================================================
TOTAL | 1 title
__________________________________________________|__________________________________________________
*See table\_printer/table\_printer.py for additional arguments and
details.*
FAQs
Python Table Printer
We found that table_printer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.