19 lines
268 B
Python
19 lines
268 B
Python
from ghub import GHub
|
|
from rich.prompt import Prompt
|
|
from rich import print
|
|
import httpx
|
|
|
|
|
|
def main():
|
|
user_name = Prompt.ask("Username?")
|
|
gh = GHub()
|
|
gh.load_user(user_name=user_name)
|
|
print(gh.repos_table())
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|