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

# python-dropboxpath

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

## Install

```
pip install dropboxpath
```

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 dropboxpath
```

## DropboxPath

Resolves a path inside your local Dropbox folder, cross-platform (Windows/macOS/Linux).

```python
from DropboxPath import dropboxPath

dropboxPath("/folder/I/Care/About/")
# WindowsPath('C:/Users/.../Dropbox/folder/I/Care/About')

dropboxPath()
# WindowsPath('C:/Users/.../Dropbox/')
```
