Install requirements and run code in virtual environments from the comfort of your own GIL
Project description
httpfs-sync
Overview
httpfs-sync is an implementation of a filesystem interface for the Python fsspec
library that uses synchronous requests based on urllib3. This serves as an alternative
to the default asynchronous (based on aiohttp) filesystem implementation provided by
fsspec. This project is ideal for environments where asynchronous operations are not
feasible or desired, allowing users to interact with HTTP-based filesystems using a
synchronous API.
If you're dealing with deadlocks potentially involving the default HTTP 'filesystem' in
fsspec, the implementation here may help with verification of behavior: just use the classes
provided here as a drop-in replacement for HTTPFileSystem and compare behaviors.
Features
- Synchronous HTTP requests for file system operations.
- Fully compatible with the
fsspecAPI, making it easy to drop in as a replacement. - Uses
urllib3for robust, production-ready HTTP communications.
Installation
To install httpfs-sync, you can use pip:
pip install httpfs-sync
Usage
Here's a simple example of how to use httpfs-sync to read a file from an HTTP server:
import fsspec
from httpfs_sync.core import SyncHTTPFileSystem
# enable use of SyncHTTPFileSystem and associated files for both http and https
SyncHTTPFileSystem.overwrite_async_registration()
# Use the registered file system to access a remote file
with fsspec.open('http://example.com/data.txt', 'r') as f:
data = f.read()
print(data)
License
httpfs-sync is distributed under the MIT License, allowing the code to be used in commercial applications as well as open-source projects.
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
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 httpfs_sync-0.0.2.tar.gz.
File metadata
- Download URL: httpfs_sync-0.0.2.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d1d3b699b0f6d6c4d9fddaf4ad8b8688b1a1ba3fefe80c1445247e56833a57c
|
|
| MD5 |
fd0f7dd0039bb233c558289f831a6e53
|
|
| BLAKE2b-256 |
6660008de95cbbd5d712211f177793b00f5c34558613285c84a22edfc9325a94
|
File details
Details for the file httpfs_sync-0.0.2-py3-none-any.whl.
File metadata
- Download URL: httpfs_sync-0.0.2-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
223c1bf44ace63f6f5b3a07678174133a701314c8bdf88a53f7fb7d71de8e521
|
|
| MD5 |
86e5f53fc456d2afbecf77f5105830a0
|
|
| BLAKE2b-256 |
6b42c1e2acce42bb8597b215313de8dacbe07d90928c195dcaf7218fa461c543
|