Metadata-Version: 2.1
Name: remove-directory
Version: 0.0.1
Summary: Recursively removes a non-empty directory
Home-page: https://github.com/Nagidal/remove_directory
Author: Борис Верховский
Author-email: sven.siegmund@gmail.com
License: UNKNOWN
Keywords: rmdir,remove dir,remove directory,recursive
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# remove_directory

Function to recursively remove a non-empty directory. Posted by Boris on [stackexchange][SE].

## Dependencies

None

## Usage

```
from pathlib import Path
from remove_directory import rmdir

p = Path("/path/to/directory")
rmdir(p)
```


## Installation

### Pip

```
pip install remove_directory
```

### Developer's Installation

You can clone the repository and install it with `pip install -e /path/to/local/repository`.

[SE]: https://stackoverflow.com/questions/13118029/deleting-folders-in-python-recursively/49782093#49782093


