def netrc_exists(): try: my_netrc = netrc.netrc() except FileNotFoundError: return False else: return my_netrc.authenticators('api.github.com') is not None