Rapid audit file and directory permissions
pip install rapid-dir-permsfrom rapid_dir_perms import perms
# Basic usage
result = perms("your input here")
print(result)- Simple, clean API with type hints
- Zero dependencies (pure Python)
- Python 3.8+ compatible
- Fully tested
- Lightweight (< 5KB)
Main utility function.
Parameters:
input— The input data to process
Returns: Processed result
Process multiple inputs at once.
Parameters:
inputs— List of inputs
Returns: List of results
from rapid_dir_perms import perms
# Example 1: Basic usage
result = perms("Hello World")
# Example 2: Batch processing
from rapid_dir_perms import batch
results = batch(["item1", "item2", "item3"])pip install pytest
pytest tests/Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE file for details.
Want to build tools like this? Check out the Cybersecurity For Beginners course — it teaches you step-by-step how to create useful Python utilities from scratch, with real-world projects and best practices.
Built with skills from Cybersecurity For Beginners