forked from copitux/python-github3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtags.py
More file actions
36 lines (27 loc) · 1011 Bytes
/
tags.py
File metadata and controls
36 lines (27 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from pygithub3.services.base import Service
class Tags(Service):
"""Consume `Tags API <http://developer.github.com/v3/git/tags/>`_"""
def get(self, sha, user=None, repo=None):
""" Get a tag
:param str sha: The sha of the tag to get.
:param str user: Username
:param str repo: Repository
.. note::
Remember :ref:`config precedence`
"""
request = self.make_request('git_data.tags.get', sha=sha, user=user,
repo=repo)
return self._get(request)
def create(self, data, user=None, repo=None):
""" Create a tag
:param dict data: Input. See `github tags doc`_
:param str user: Username
:param str repo: Repository
.. note::
Remember :ref:`config precedence`
"""
request = self.make_request('git_data.tags.create', body=data,
user=user, repo=repo)
return self._post(request)