Skip to content

Instantly share code, notes, and snippets.

View tikipatel's full-sized avatar

Pratikbhai Patel tikipatel

  • San Francisco, CA
View GitHub Profile
@selimslab
selimslab / get_gists.py
Last active February 6, 2026 01:55 — forked from leoloobeek/get_gists.py
Download all gists of a user
import sys
from subprocess import call
import json
import os
import requests
def download_gists(gists: list):
for gist in gists:
call(["git", "clone", gist["git_pull_url"]])