Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Generate descriptive directory trees dynamically, ready for your project's REAMDE.
The descriptions are specified in the same files with a specific tag tag:
e.g. [treesource] The main readme
Directories descriptions are specified in the respective treesource.txt
file
Files and folder which are not specifically described are omitted from the tree by default.
$ python -m treesource
.
├── example_folder/
│ ├── first_subfolder/ (a documented folder)
│ │ ├── sub-sub1/
│ │ │ └── file3.sh (this is file 3)
│ │ ├── sub-sub2/
│ │ │ └── file4.cpp (this is file 4)
│ │ └── random_file.rdm (a documented file)
│ ├── second_subfolder/ (a documented folder with no documented files)
│ ├── a_text_file.txt (a text file)
│ ├── my_javascript.js (this is file 1)
│ └── test.py (a python script)
└── README.md (The main readme)
with pip pip install treesource
.
Execute the python module from the root folder: python -m treesource
usage: python -m treesource [-h] [-u] [-a] [-r PATH] [-f FORMAT]
Source file-trees generator.
optional arguments:
-h, --help show this help message and exit
-u use special unicode symbols as icons
-a show all files and folder, not only documented ones
-r PATH, --root PATH the root directory of the tree
-f FORMAT, --format FORMAT
the rendering format [txt|md|ascii]
At the moment only txt and markdown are supported as output formats.
If you experience encoding-related problems, use the -f ascii
.
The data is represented as anytree, therefore implementing other renderings is easy.
How to implement new rendering formats:
Rendering formats are specified in treesource/render/formats.py
This example shows the use of treesource in a python script, and the definition of a custom export format.
import treesource as ts
# Generate the tree
root_path='./example_folder'
tree = ts.generate_tree(root_path)
# === Render as pure text
rendered = ts.render.as_text(tree, use_unicode=False)
print(rendered)
# === Render as specific format
# The rendering FORMATS use special tokens which are replaced by the values:
# pre: the ASCII chars that represent the tree
# icon: an icon displayed is use_unicode is true
# name: the file/directory name
# doc: the documentation string
rendered = ts.render.engine.render_tree(
tree,
folder_icon='D', file_icon='F',
doc_folder_format="{pre}[{icon}]/{name}/ --> {doc}",
no_doc_folder_format="{pre}[{icon}][{name}]",
doc_file_format="{pre}[{icon}][{name}] --> {doc}",
no_doc_file_format="{pre}[{icon}][{name}]")
print(rendered)
The output is
.
├── first_subfolder\ (a documented folder)
│ ├── sub-sub1\
│ │ └── file3.sh (this is file 3)
│ ├── sub-sub2\
│ │ └── file4.cpp (this is file 4)
│ └── random_file.rdm (a documented file)
├── second_subfolder\ (a documented folder with no documented files)
├── a_text_file.txt (a text file)
├── my_javascript.js (this is file 1)
└── test.py (a python script)
.
├── [D]/first_subfolder/ --> a documented folder
│ ├── [D][sub-sub1]
│ │ └── [F][file3.sh] --> this is file 3
│ ├── [D][sub-sub2]
│ │ └── [F][file4.cpp] --> this is file 4
│ └── [F][random_file.rdm] --> a documented file
├── [D]/second_subfolder/ --> a documented folder with no documented files
├── [F][a_text_file.txt] --> a text file
├── [F][my_javascript.js] --> this is file 1
└── [F][test.py] --> a python script
FAQs
commented source file-trees generator
We found that treesource 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.