- Do not subscribe to every service at once. Most free credits expire quickly. Test them one by one and move to the next when your current credits run out.
- Register, verify your account, and claim your credits. Follow each platform’s documentation to connect your coding tools.
- Keep your API keys private. Do not share them publicly. (save or star this gist for future update)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default { | |
| async fetch(request, env, ctx) { | |
| return handleRequest(request); | |
| } | |
| }; | |
| async function handleRequest(request) { | |
| const url = new URL(request.url); | |
| const pathname = url.pathname; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /// script | |
| # dependencies = [ | |
| # "requests", | |
| # ] | |
| # /// | |
| import requests | |
| import json | |
| import sys | |
| from threading import Thread |