desc stringlengths 3 26.7k | decl stringlengths 11 7.89k | bodies stringlengths 8 553k |
|---|---|---|
':type: string'
| @property
def prefix(self):
| self._completeIfNotSet(self._prefix)
return self._prefix.value
|
':type: bool'
| @property
def redirect(self):
| self._completeIfNotSet(self._redirect)
return self._redirect.value
|
':type: string'
| @property
def s3_url(self):
| self._completeIfNotSet(self._s3_url)
return self._s3_url.value
|
':type: string'
| @property
def signature(self):
| self._completeIfNotSet(self._signature)
return self._signature.value
|
':type: integer'
| @property
def size(self):
| self._completeIfNotSet(self._size)
return self._size.value
|
':type: string'
| @property
def url(self):
| self._completeIfNotSet(self._url)
return self._url.value
|
':calls: `DELETE /repos/:owner/:repo/downloads/:id <http://developer.github.com/v3/repos/downloads>`_
:rtype: None'
| def delete(self):
| (headers, data) = self._requester.requestJsonAndCheck('DELETE', self.url)
|
':type: integer'
| @property
def id(self):
| self._completeIfNotSet(self._id)
return self._id.value
|
':type: string'
| @property
def key(self):
| self._completeIfNotSet(self._key)
return self._key.value
|
':type: string'
| @property
def title(self):
| self._completeIfNotSet(self._title)
return self._title.value
|
':type: string'
| @property
def url(self):
| self._completeIfNotSet(self._url)
return self._url.value
|
':type: bool'
| @property
def verified(self):
| self._completeIfNotSet(self._verified)
return self._verified.value
|
':calls: `DELETE /repos/:owner/:repo/keys/:id <http://developer.github.com/v3/repos/keys>`_
:rtype: None'
| def delete(self):
| (headers, data) = self._requester.requestJsonAndCheck('DELETE', self.__customUrl)
|
':calls: `PATCH /repos/:owner/:repo/keys/:id <http://developer.github.com/v3/repos/keys>`_
:param title: string
:param key: string
:rtype: None'
| def edit(self, title=github.GithubObject.NotSet, key=github.GithubObject.NotSet):
| assert ((title is github.GithubObject.NotSet) or isinstance(title, (str, unicode))), title
assert ((key is github.GithubObject.NotSet) or isinstance(key, (str, unicode))), key
post_parameters = dict()
if (title is not github.GithubObject.NotSet):
post_parameters['title'] = title
if (key is n... |
':type: :class:`github.Commit.Commit`'
| @property
def commit(self):
| return self._commit.value
|
':type: string'
| @property
def name(self):
| return self._name.value
|
':type: string'
| @property
def tarball_url(self):
| return self._tarball_url.value
|
':type: string'
| @property
def zipball_url(self):
| return self._zipball_url.value
|
':type: integer'
| @property
def collaborators(self):
| return self._collaborators.value
|
':type: string'
| @property
def name(self):
| return self._name.value
|
':type: integer'
| @property
def private_repos(self):
| return self._private_repos.value
|
':type: integer'
| @property
def space(self):
| return self._space.value
|
':type: integer'
| @property
def id(self):
| self._completeIfNotSet(self._id)
return self._id.value
|
':type: string'
| @property
def key(self):
| self._completeIfNotSet(self._key)
return self._key.value
|
':type: string'
| @property
def title(self):
| self._completeIfNotSet(self._title)
return self._title.value
|
':type: string'
| @property
def url(self):
| self._completeIfNotSet(self._url)
return self._url.value
|
':type: bool'
| @property
def verified(self):
| self._completeIfNotSet(self._verified)
return self._verified.value
|
':calls: `DELETE /user/keys/:id <http://developer.github.com/v3/users/keys>`_
:rtype: None'
| def delete(self):
| (headers, data) = self._requester.requestJsonAndCheck('DELETE', self.url)
|
':calls: `PATCH /user/keys/:id <http://developer.github.com/v3/users/keys>`_
:param title: string
:param key: string
:rtype: None'
| def edit(self, title=github.GithubObject.NotSet, key=github.GithubObject.NotSet):
| assert ((title is github.GithubObject.NotSet) or isinstance(title, (str, unicode))), title
assert ((key is github.GithubObject.NotSet) or isinstance(key, (str, unicode))), key
post_parameters = dict()
if (title is not github.GithubObject.NotSet):
post_parameters['title'] = title
if (key is n... |
':param name: string
:param email: string
:param date: string'
| def __init__(self, name, email, date=github.GithubObject.NotSet):
| assert isinstance(name, (str, unicode)), name
assert isinstance(email, (str, unicode)), email
assert ((date is github.GithubObject.NotSet) or isinstance(date, (str, unicode))), date
self.__name = name
self.__email = email
self.__date = date
|
':type: string'
| @property
def body(self):
| self._completeIfNotSet(self._body)
return self._body.value
|
':type: datetime.datetime'
| @property
def created_at(self):
| self._completeIfNotSet(self._created_at)
return self._created_at.value
|
':type: integer'
| @property
def id(self):
| self._completeIfNotSet(self._id)
return self._id.value
|
':type: string'
| @property
def issue_url(self):
| self._completeIfNotSet(self._issue_url)
return self._issue_url.value
|
':type: datetime.datetime'
| @property
def updated_at(self):
| self._completeIfNotSet(self._updated_at)
return self._updated_at.value
|
':type: string'
| @property
def url(self):
| self._completeIfNotSet(self._url)
return self._url.value
|
':type: string'
| @property
def html_url(self):
| self._completeIfNotSet(self._html_url)
return self._html_url.value
|
':type: :class:`github.NamedUser.NamedUser`'
| @property
def user(self):
| self._completeIfNotSet(self._user)
return self._user.value
|
':calls: `DELETE /repos/:owner/:repo/issues/comments/:id <http://developer.github.com/v3/issues/comments>`_
:rtype: None'
| def delete(self):
| (headers, data) = self._requester.requestJsonAndCheck('DELETE', self.url)
|
':calls: `PATCH /repos/:owner/:repo/issues/comments/:id <http://developer.github.com/v3/issues/comments>`_
:param body: string
:rtype: None'
| def edit(self, body):
| assert isinstance(body, (str, unicode)), body
post_parameters = {'body': body}
(headers, data) = self._requester.requestJsonAndCheck('PATCH', self.url, input=post_parameters)
self._useAttributes(data)
|
':type: string'
| @property
def archive_url(self):
| self._completeIfNotSet(self._archive_url)
return self._archive_url.value
|
':type: string'
| @property
def assignees_url(self):
| self._completeIfNotSet(self._assignees_url)
return self._assignees_url.value
|
':type: string'
| @property
def blobs_url(self):
| self._completeIfNotSet(self._blobs_url)
return self._blobs_url.value
|
':type: string'
| @property
def branches_url(self):
| self._completeIfNotSet(self._branches_url)
return self._branches_url.value
|
':type: string'
| @property
def clone_url(self):
| self._completeIfNotSet(self._clone_url)
return self._clone_url.value
|
':type: string'
| @property
def collaborators_url(self):
| self._completeIfNotSet(self._collaborators_url)
return self._collaborators_url.value
|
':type: string'
| @property
def comments_url(self):
| self._completeIfNotSet(self._comments_url)
return self._comments_url.value
|
':type: string'
| @property
def commits_url(self):
| self._completeIfNotSet(self._commits_url)
return self._commits_url.value
|
':type: string'
| @property
def compare_url(self):
| self._completeIfNotSet(self._compare_url)
return self._compare_url.value
|
':type: string'
| @property
def contents_url(self):
| self._completeIfNotSet(self._contents_url)
return self._contents_url.value
|
':type: string'
| @property
def contributors_url(self):
| self._completeIfNotSet(self._contributors_url)
return self._contributors_url.value
|
':type: datetime.datetime'
| @property
def created_at(self):
| self._completeIfNotSet(self._created_at)
return self._created_at.value
|
':type: string'
| @property
def default_branch(self):
| self._completeIfNotSet(self._default_branch)
return self._default_branch.value
|
':type: string'
| @property
def description(self):
| self._completeIfNotSet(self._description)
return self._description.value
|
':type: string'
| @property
def downloads_url(self):
| self._completeIfNotSet(self._downloads_url)
return self._downloads_url.value
|
':type: string'
| @property
def events_url(self):
| self._completeIfNotSet(self._events_url)
return self._events_url.value
|
':type: bool'
| @property
def fork(self):
| self._completeIfNotSet(self._fork)
return self._fork.value
|
':type: integer'
| @property
def forks(self):
| self._completeIfNotSet(self._forks)
return self._forks.value
|
':type: integer'
| @property
def forks_count(self):
| self._completeIfNotSet(self._forks_count)
return self._forks_count.value
|
':type: string'
| @property
def forks_url(self):
| self._completeIfNotSet(self._forks_url)
return self._forks_url.value
|
':type: string'
| @property
def full_name(self):
| self._completeIfNotSet(self._full_name)
return self._full_name.value
|
':type: string'
| @property
def git_commits_url(self):
| self._completeIfNotSet(self._git_commits_url)
return self._git_commits_url.value
|
':type: string'
| @property
def git_refs_url(self):
| self._completeIfNotSet(self._git_refs_url)
return self._git_refs_url.value
|
':type: string'
| @property
def git_tags_url(self):
| self._completeIfNotSet(self._git_tags_url)
return self._git_tags_url.value
|
':type: string'
| @property
def git_url(self):
| self._completeIfNotSet(self._git_url)
return self._git_url.value
|
':type: bool'
| @property
def has_downloads(self):
| self._completeIfNotSet(self._has_downloads)
return self._has_downloads.value
|
':type: bool'
| @property
def has_issues(self):
| self._completeIfNotSet(self._has_issues)
return self._has_issues.value
|
':type: bool'
| @property
def has_wiki(self):
| self._completeIfNotSet(self._has_wiki)
return self._has_wiki.value
|
':type: string'
| @property
def homepage(self):
| self._completeIfNotSet(self._homepage)
return self._homepage.value
|
':type: string'
| @property
def hooks_url(self):
| self._completeIfNotSet(self._hooks_url)
return self._hooks_url.value
|
':type: string'
| @property
def html_url(self):
| self._completeIfNotSet(self._html_url)
return self._html_url.value
|
':type: integer'
| @property
def id(self):
| self._completeIfNotSet(self._id)
return self._id.value
|
':type: string'
| @property
def issue_comment_url(self):
| self._completeIfNotSet(self._issue_comment_url)
return self._issue_comment_url.value
|
':type: string'
| @property
def issue_events_url(self):
| self._completeIfNotSet(self._issue_events_url)
return self._issue_events_url.value
|
':type: string'
| @property
def issues_url(self):
| self._completeIfNotSet(self._issues_url)
return self._issues_url.value
|
':type: string'
| @property
def keys_url(self):
| self._completeIfNotSet(self._keys_url)
return self._keys_url.value
|
':type: string'
| @property
def labels_url(self):
| self._completeIfNotSet(self._labels_url)
return self._labels_url.value
|
':type: string'
| @property
def language(self):
| self._completeIfNotSet(self._language)
return self._language.value
|
':type: string'
| @property
def languages_url(self):
| self._completeIfNotSet(self._languages_url)
return self._languages_url.value
|
':type: string'
| @property
def master_branch(self):
| self._completeIfNotSet(self._master_branch)
return self._master_branch.value
|
':type: string'
| @property
def merges_url(self):
| self._completeIfNotSet(self._merges_url)
return self._merges_url.value
|
':type: string'
| @property
def milestones_url(self):
| self._completeIfNotSet(self._milestones_url)
return self._milestones_url.value
|
':type: string'
| @property
def mirror_url(self):
| self._completeIfNotSet(self._mirror_url)
return self._mirror_url.value
|
':type: string'
| @property
def name(self):
| self._completeIfNotSet(self._name)
return self._name.value
|
':type: integer'
| @property
def network_count(self):
| self._completeIfNotSet(self._network_count)
return self._network_count.value
|
':type: string'
| @property
def notifications_url(self):
| self._completeIfNotSet(self._notifications_url)
return self._notifications_url.value
|
':type: integer'
| @property
def open_issues(self):
| self._completeIfNotSet(self._open_issues)
return self._open_issues.value
|
':type: integer'
| @property
def open_issues_count(self):
| self._completeIfNotSet(self._open_issues_count)
return self._open_issues_count.value
|
':type: :class:`github.Organization.Organization`'
| @property
def organization(self):
| self._completeIfNotSet(self._organization)
return self._organization.value
|
':type: :class:`github.NamedUser.NamedUser`'
| @property
def owner(self):
| self._completeIfNotSet(self._owner)
return self._owner.value
|
':type: :class:`github.Repository.Repository`'
| @property
def parent(self):
| self._completeIfNotSet(self._parent)
return self._parent.value
|
':type: :class:`github.Permissions.Permissions`'
| @property
def permissions(self):
| self._completeIfNotSet(self._permissions)
return self._permissions.value
|
':type: bool'
| @property
def private(self):
| self._completeIfNotSet(self._private)
return self._private.value
|
':type: string'
| @property
def pulls_url(self):
| self._completeIfNotSet(self._pulls_url)
return self._pulls_url.value
|
':type: datetime.datetime'
| @property
def pushed_at(self):
| self._completeIfNotSet(self._pushed_at)
return self._pushed_at.value
|
':type: integer'
| @property
def size(self):
| self._completeIfNotSet(self._size)
return self._size.value
|
':type: :class:`github.Repository.Repository`'
| @property
def source(self):
| self._completeIfNotSet(self._source)
return self._source.value
|
':type: string'
| @property
def ssh_url(self):
| self._completeIfNotSet(self._ssh_url)
return self._ssh_url.value
|
':type: integer'
| @property
def stargazers_count(self):
| self._completeIfNotSet(self._stargazers_count)
return self._stargazers_count.value
|
':type: string'
| @property
def stargazers_url(self):
| self._completeIfNotSet(self._stargazers_url)
return self._stargazers_url.value
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.