Provides a lazy-loading, seekable file-like object for remote HTTP files using Range requests. Version 0.1.0 supports Python >= 3.7. Low release cadence.
pip install seekablehttpfileNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Opens a remote file via HTTP Range requests and reads a chunk after seeking.
Call a small read or check status explicitly after construction if you want to fail fast.
Consider using a different strategy for random access patterns or limit seek range.
Use: from seekablehttpfile import SeekableHttpFile
Ensure the URL starts with http:// or https://.
Check the URL is reachable and returns a valid Content-Range header.