{"library":"seekablehttpfile","title":"seekablehttpfile","description":"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.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install seekablehttpfile"],"cli":null},"imports":["from seekablehttpfile import SeekableHttpFile"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from seekablehttpfile import SeekableHttpFile\n\n# Open a remote file with seek support\nwith SeekableHttpFile('https://example.com/large-file.bin') as f:\n    f.seek(1000)\n    data = f.read(1024)\n    print(len(data))","lang":"python","description":"Opens a remote file via HTTP Range requests and reads a chunk after seeking.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}