fetch github info

    Our FREE site is mostly funded by the Amazon ads ⇓below⇓.

    Support us by clicking ⇑above⇑ next time you plan to buy a product on Amazon.

    # Created by sarathkaul on 14/11/19
    
    import requests
    
    _GITHUB_API = "https://api.github.com/user"
    
    
    def fetch_github_info(auth_user: str, auth_pass: str) -> None:
        # fetching github info using requests
        info = requests.get(_GITHUB_API, auth=(auth_user, auth_pass))
    
        for a_info, a_detail in info.json().items():
            print(f"{a_info}: {a_detail}")
    
    
    if __name__ == "main":
        fetch_github_info("<USER NAME>", "<PASSWORD>")