Skip to content

Instantly share code, notes, and snippets.

View arunmathaisk's full-sized avatar

Arun Mathai S.K. arunmathaisk

View GitHub Profile
@arunmathaisk
arunmathaisk / script.py
Last active November 12, 2024 17:51
Check if frappe app source is public or not
import pandas as pd
import requests
from urllib.parse import urlparse
import time
def is_public_repo(repo_url, checked_repos):
"""Check if a GitHub repository is public or private"""
if repo_url in checked_repos:
return checked_repos[repo_url]