Metadata-Version: 2.1
Name: dir-handeler
Version: 0.0.1
Summary: Handle directory.
Home-page: https://github.com/SanteriHetekivi/dir_handeler
Author: Santeri Hetekivi
Author-email: development@hetekivi.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SanteriHetekivi/dir_handeler/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Directory handeler.

Create and handle directory.

## Install
```shell
pip install --upgrade dir-handeler==0.0.1
```

## Usage
```python

# Import Dir class
from dir_handeler.dir import Dir

# tmp directory current directory.
tmp_dir = Dir(name="tmp", parent="")

# test directory inside tmp directory.
tmp_dir = Dir(name="test", parent=tmp_dir)
```

