HTTP range implementation based on Fastapi
Project description
Fastapi Range Response
Description
- HTTP range response for Fastapi
- Part of the code is based on changes to BáiZé FileResponse
- 实现了HTTP Range的响应类, 继承自starlette.response.Response, 可使用本机文件或sftp协议进行读取文件
Install
pip install fastapi_range_response
QuickStart
A short example for fastapi application
import asyncio
import asyncssh
from fastapi import FastAPI
from fastapi import Query
from fastapi_range_response import FileRangeResponse, AsyncsshRangeResponse
app = FastAPI()
@app.get('/local_file')
async def download_local_file(full_path: str = Query()):
return FileRangeResponse(full_path, media_type='application/octet-stream')
@app.get('/download_sftp_file')
async def download_sftp_file(full_path: str = Query()):
ssh_client = await asyncio.wait_for(
asyncssh.connect(host='xxx', port=22, username='xxx', password='xxxx', known_hosts=None),
timeout=10
)
return AsyncsshRangeResponse(full_path, ssh_client, done_close=True)
if __name__ == '__main__':
import uvicorn
uvicorn.run(app)
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
File details
Details for the file fastapi_range_response-0.1.1.tar.gz
.
File metadata
- Download URL: fastapi_range_response-0.1.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1cf80144cd50764ca6c11105cb4d017644ae2bc8deee451bcdf01a72a5e8096 |
|
MD5 | 135e5d43e7aa51ca070e42259c35be2a |
|
BLAKE2b-256 | 71aee934bfb751428af433e96061ce296bd97921a9c8eb5e3c5d9cdc501e1147 |