1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/usr/bin/env python # -*- encoding: utf-8 -*- from pygithub3.services.users import User class GitHub(object): """ Main entrance """ def __init__(self, **config): self._users = User(**config) @property def users(self): return self._users