aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/git_data/trees.py
blob: 00e010b8a3a0b42853523ceebf96a40f7457d6dd (plain) (blame)
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from pygithub3.services.base import Service


class Trees(Service):
    """Consume `Trees API <http://developer.github.com/v3/git/trees/>`_"""

    def get(self, sha, recursive=False, user=None, repo=None):
        """Get a tree object

        :param str sha: The SHA of the tree you want.
        :param bool recursive: Whether to resolve each sub-tree belonging to
                               this tree
        :param str user: Username
        :param str repo: Repository

        """
        return self._get(
            self.make_request('git_data.trees.get', sha=sha,
                              recursive=recursive, user=user, repo=repo)
        )

    def create(self, body, user=None, repo=None):
        """Create a tree object

        :param dict body: Data describing the tree to create

        """
        return self._post(
            self.make_request('git_data.trees.create', body=body, user=user,
                              repo=repo)
        )