Metadata-Version: 2.4
Name: onedrivepath
Version: 0.1.0
Summary: Resolve a path inside your local OneDrive folder, cross-platform
Author-email: Reece Lawrence <rllawrence03@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Rllawrence03/python-onedrivepath
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# python-onedrivepath

Resolve a path inside your local OneDrive folder, cross-platform

## Install

```
pip install onedrivepath
```

To edit, install in editable mode instead and just modify the files in this repo directly:

```
pip install -e .
```

Installed via PyPI, so update to the latest published version with:

```
pip install --upgrade onedrivepath
```

## OneDrivePath

Resolves a path inside your local OneDrive folder (Windows/macOS; best-effort on Linux via unofficial clients).

```python
from OneDrivePath import onedrivePath

onedrivePath("/folder/I/Care/About/")
# 'C:/Users/.../OneDrive/folder/I/Care/About'

onedrivePath()
# 'C:/Users/.../OneDrive'
```
