Skip to content

Instantly share code, notes, and snippets.

View jainamoswal's full-sized avatar
🧇
All my code is cooked in a pressure cooker.

Jãїиãм jainamoswal

🧇
All my code is cooked in a pressure cooker.
  • 103.238.107.100
  • 05:33 (UTC +05:30)
View GitHub Profile

To delete all your workflow runs, use this workflow file .github/workflows/clean.yml in your root directory and run it via workflow_dispatch.

from flask import Flask, request, redirect
from utils import verify
app = Flask(__name__)
@app.route('/')
def main():
if verify(request.args.to_dict()) == request.args.get('hash'):
return f"Hey {request.args.get('first_name')}!"
else: