Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ignore-python

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ignore-python

Rust ignore crate Python bindings

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

ignore in Python

This is a Python library that binds to the Rust crate ignore.

ignore's Python bindings can be used for building a fast recursive directory iterator that respects various filters such as globs, file types and .gitignore files.

Example

This example shows the most basic usage of this package. This code will recursively traverse the current directory while automatically filtering out files and directories according to ignore globs found in files like .ignore and .gitignore:

from ignore import Walk

for entry in Walk("./"):
	print(entry.path())

Example: advanced

By default, the recursive directory iterator will ignore hidden files and directories. This can be disabled by building the iterator with WalkBuilder:

from ignore import WalkBuilder

for entry in WalkBuilder("./").hidden(False).build():
	print(entry.path())

Refer to the API documentation for more information.

How to install (from pip)

pip install ignore-python
# or
python -m pip install ignore-python

How to develop

This assumes that you have rust and cargo installed. I use the workflow recommended by pyo3 and maturin.

Keywords

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