An open API service indexing awesome lists of open source software.

https://github.com/nonebot/nonestorage

Simple library that provides local storage folder detect
https://github.com/nonebot/nonestorage

Last synced: 4 months ago
JSON representation

Simple library that provides local storage folder detect

Awesome Lists containing this project

README

          

# NoneStorage

Simple library that provides local storage folder detect

## Usage

```python
from pathlib import Path

from nonestorage import user_data_dir, user_config_dir, user_cache_dir

data_dir: Path = user_data_dir("appname")
config_dir: Path = user_config_dir("appname", roaming=True)
cache_dir: Path = user_cache_dir("appname", roaming=False)
```