Cross-platform, file handler using native pickers and security models.
Project description
xfilepy
Cross-platform, file handler using native pickers and security models.
Provides overloads for creating file handlers via native file pickers and saving/loading persistent access grants. Supported platforms are Android, iOS, and Desktop (Windows, macOS, Linux). On all platforms you can choose files outside your app's sandbox using the native file picker without asking the user for broad filesystem permissions. Access to the chosen files is mediated by platform-specific security models (e.g., SAF on Android, security-scoped bookmarks on iOS). This allows your app to write to the files later without re-prompting the user, even across app restarts.
Usage
See API Documentation for full details. Here is a brief example:
import asyncio
from xfilepy import FileHandler, UserCancelledError
# Open via native picker
try: # The user may cancel the picker, so we catch that exception
fh = asyncio.run(FileHandler.create_via_picker())
with fh.open() as f:
data = f.read()
print(data)
except UserCancelledError:
print("User cancelled the file picker.")
# Save via native "Save as…"
fh = asyncio.run(FileHandler.create_via_save_dialog())
with fh.open(mode="w", encoding="utf-8") as f:
f.write("Hello, world!")
# Serialize back to store in your settings
persist = fh.to_uri_string()
# Rehydrate a previously granted URI/bookmark
fh = FileHandler.from_uri_string(persist, require_write=True)
with fh.open(mode="a") as f:
f.write("Appended line.")
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xfilepy-0.3.1.tar.gz.
File metadata
- Download URL: xfilepy-0.3.1.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Alpine Linux","version":"3.23.3","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d3120e3252cc5549e8da52e09839408cb5eba56cf12041e4c75a2a1bb71280d
|
|
| MD5 |
3353fdc7399080c4831100af2858a03b
|
|
| BLAKE2b-256 |
c6475427544c024bc55945909344624f5a10ee19a1e2302aed5daea9338f5327
|
File details
Details for the file xfilepy-0.3.1-py3-none-any.whl.
File metadata
- Download URL: xfilepy-0.3.1-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Alpine Linux","version":"3.23.3","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e701e8f28809671b5b28b3b4656dcb97fb60d2948b83cb6ad7cab4fe749f3be
|
|
| MD5 |
5ae24f8ec533d78acd64fce7baf862a6
|
|
| BLAKE2b-256 |
b921c05e257e02a52ffaf7f55c3b2f677c51308671e727aac9634782741227f2
|