Aşağıdakii python kodunu kullanarak sınrsız bir şekilde instagram yorumlarını çekin ve kullanici adlarını çekin 
import json
import requests
from urllib.parse import quote_plus
def request_json(url: str):
response = requests.get(url)
response.raise_for_status()
return response.json()
def print_comments_users(shortcode: str) -> None:
url = f"https://www.instagram.com/p/{quote_plus(shortcode)}/?__a=1&__d=dis"
response_json = request_json(url)
comments = response_json.get("graphql", {}).get("shortcode_media", {}).get("edge_media_to_parent_comment", {}).get("edges", [])
for comment in comments:
username = comment.get("node", {}).get("owner", {}).get("username")
if username:
print(username)
# Örnek bir paylaşımın shortcode değeri
shortcode = "CuhekohoNVI"
print_comments_users(shortcode)