Spaces:
Sleeping
Sleeping
File size: 296 Bytes
8027f40 | 1 2 3 4 5 6 7 8 9 | #!/bin/bash
echo "Testing if YOUTUBE_API_KEY is working..."
echo ""
echo "Sending search request..."
curl -X POST https://ocx2025-basicsearch.hf.space/search \
-H "Content-Type: application/json" \
-d '{"query": "Python programming", "max_results": 2}' \
2>/dev/null | python3 -m json.tool
|