Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
guohanghui
/
biopython
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2cd68fb
biopython
/
app.py
guohanghui
Create app.py
9a672f9
verified
10 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
227 Bytes
from
fastapi
import
FastAPI
import
os
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"status"
:
"ok"
,
"service"
:
"biopython"
,
"transport"
: os.environ.get(
"MCP_TRANSPORT"
,
"stdio"
),
}