A collection of Kirk Images for you to download or use as an API
Simply go to the github link
Here is some basic python code that prints a random image
import requests
import random
def kirk():
try:
response = requests.get("https://jtmc-g3.github.io/Kirk-images/images.json")
if response.status_code == 200:
data = response.json()
images = data.get('images', [])
if images:
random_image = random.choice(images)
image_url = f"https://jtmc-g3.github.io/Kirk-images/{random_image}"
print(image_url)
else:
print("No images found in the JSON data.")
else:
print(f"Failed to fetch data. Status code: {response.status_code}")
except Exception as e:
print(f"Error: {e}")
kirk()
This prints a random kirkified image from the url (sorry if it syntax errors. i wrote it in the readme)