Skip to content

kitsu_mock

KitsuResponse

REST API Response.

Source code in server/kitsu/kitsu_mock.py
 7
 8
 9
10
11
12
13
14
15
class KitsuResponse:
    """REST API Response."""

    def __init__(self, _data, _status_code: int = 200):
        self.status_code = _status_code
        self.data = _data

    def json(self):
        return self.data