Skip to content

Instantly share code, notes, and snippets.

View devashish2024's full-sized avatar
👀
You can't stop the waves, but you can learn to surf.

Ashish Agarwal devashish2024

👀
You can't stop the waves, but you can learn to surf.
View GitHub Profile
@devashish2024
devashish2024 / oauth.py
Created February 2, 2025 21:45
Chess.com OAuth JWT Implementation (Python)
import base64
import hashlib
import secrets
import string
import requests
import urllib.parse
import json
from typing import Optional, Dict, Any
class ChessComOAuthHandler: