Metadata-Version: 2.1
Name: pyflush
Version: 0.1.0
Summary: A python library to remove content of a directory, or file in a safer manner. After running pyflush, it became much safer to delete the file/directory manually/programmatically.
Home-page: https://github.com/mr-ravin/pyflush
Author: Ravin Kumar
Author-email: mr.ravin_kumar@hotmail.com
License: UNKNOWN
Description: # pyflush
        This repository contains python code to remove content of a directory, or file in a safer manner. After running pyflush, it became much safer to delete the file manually/programmatically.
        
        #### Developer: [Ravin Kumar](http://mr-ravin.github.io)
        
        ### Steps to use pyflush
        
        - Removing a file
        
        ```python
        import pyflush
        pyflush.flushfile("filename.txt")
        ```
        
        - Removing a directory
        
        ```python
        import pyflush
        pyflush.flushdir("directoryname")
        ```
        
        #### Installation using PyPi
        
        ```
        pip3 install pyflush
        ```
        
        #### Note: This work can be used freely for academic research work and individual non-commercial projects, please do provide citation and/or deserved credits to this work. For Industrial and commercial use permission is required from the Developer.
        
        ##### NOTE: Please use this library at your own risk !!!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
