mirror of
https://github.com/status-im/infra-utils.git
synced 2025-02-23 17:38:12 +00:00
10 lines
196 B
Python
Executable File
10 lines
196 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
from github import Github
|
|
|
|
g = Github(os.environ['GH_TOKEN'])
|
|
org = g.get_organization('status-im')
|
|
team = org.get_team_by_slug(sys.argv[1])
|
|
print(team)
|