Metadata-Version: 2.4
Name: toppath
Version: 2025.6.4
Summary: a package on top of pathlib and path to use path easily
Author-email: Lix Xu <xuzenglin@gmail.com>
Project-URL: Homepage, https://github.com/lixxu/toppath
Project-URL: Bug Tracker, https://github.com/lixxu/toppath/issues
Keywords: path,toppath,pathlib
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: path
Dynamic: license-file

# toppath

a package on top of pathlib and path to use path easily

## installation

```bash
pip install toppath
```

## usage

```python
from toppath.path import Path

d = Path("hello.txt")
print(d.exists())

# d.pp is pathlib.Path object
print(d.pp)

```
