Utils for making os standard path operationsinteroperable with Cloud blob storages
Project description
# smart_pathlib - utils for making common path operations interoperable with Cloud object storages
## What ?
smart_pathlib is highly inspired by smart_open and provide drop-in replacement for Python part of os, os.path, glob modules functions such as exists, stat, listdir, glob.
## Why ?
The goal is to provide a clean and Pythonic API for common file manipulations. It simplifies rapid application development, making your code that manipulates files interoperable with local file system and Cloud blob storage solutions such as S3, GCS, Azure Blob Storage.
## Example
A drop-in replacement os.path.exists that operates on different storage types:
`python # Test if a local file exists from smart_pathlib import exists assert exists('/Users/me/Downloads/test_file.txt') `
`python # Test if a file exists on GCS from smart_pathlib import exists assert exists('gs://my_bucket/test_file.txt') `
## Installation
You can select the “flavor” of smart_pathlib to install, depending on your storage provider:
` pip install smart_pathlib[gcp] # Install GCP deps `
Or install all packages using: ` pip install smart_pathlib[all] `
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for smart_pathlib-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65da5b3b81067c9e02c197940c61815a2628ce54823eb105dba3492d64fb29e7 |
|
MD5 | a7ae4933e7cd48009df4e82806cc63c6 |
|
BLAKE2b-256 | 9209e43c28492dcaa41ec79e5dc1c878dce0ae1b9765fed639d9433a27bf4f23 |