当前位置: 首页>>代码示例>>Python>>正文


Python Board.from_json方法代码示例

本文整理汇总了Python中board.Board.from_json方法的典型用法代码示例。如果您正苦于以下问题:Python Board.from_json方法的具体用法?Python Board.from_json怎么用?Python Board.from_json使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在board.Board的用法示例。


在下文中一共展示了Board.from_json方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: list_boards

# 需要导入模块: from board import Board [as 别名]
# 或者: from board.Board import from_json [as 别名]
    def list_boards(self):
        """
        Returns all boards for your Trello user

        :return: a list of Python objects representing the Trello boards.
        Each board has the following noteworthy attributes:
            - id: the board's identifier
            - name: Name of the board
            - desc: Description of the board (optional - may be missing from the
                    returned JSON)
            - closed: Boolean representing whether this board is closed or not
            - url: URL to the board
        """
        json_obj = self.fetch_json('/members/me/boards')
        return [Board.from_json(self, json_obj=obj) for obj in json_obj]
开发者ID:gEndelf,项目名称:py-trello,代码行数:17,代码来源:trelloclient.py

示例2: add_board

# 需要导入模块: from board import Board [as 别名]
# 或者: from board.Board import from_json [as 别名]
 def add_board(self, board_name):
     obj = self.fetch_json('/boards', http_method='POST',
                           post_args={'name': board_name})
     return Board.from_json(self, json_obj=obj)
开发者ID:gEndelf,项目名称:py-trello,代码行数:6,代码来源:trelloclient.py

示例3: get_board

# 需要导入模块: from board import Board [as 别名]
# 或者: from board.Board import from_json [as 别名]
 def get_board(self, board_id):
     obj = self.fetch_json('/boards/' + board_id)
     return Board.from_json(self, json_obj=obj)
开发者ID:gEndelf,项目名称:py-trello,代码行数:5,代码来源:trelloclient.py

示例4: get_board

# 需要导入模块: from board import Board [as 别名]
# 或者: from board.Board import from_json [as 别名]
 def get_board(self, field_name):
     # error checking
     json_obj = self.client.fetch_json(
         '/organizations/' + self.id + '/boards',
         query_params={'filter': 'open', 'fields': field_name})
     return [Board.from_json(organization=self, json_obj=obj) for obj in json_obj]
开发者ID:gEndelf,项目名称:py-trello,代码行数:8,代码来源:organization.py

示例5: get_boards

# 需要导入模块: from board import Board [as 别名]
# 或者: from board.Board import from_json [as 别名]
 def get_boards(self, list_filter):
     # error checking
     json_obj = self.client.fetch_json(
         '/organizations/' + self.id + '/boards',
         query_params={'lists': 'none', 'filter': list_filter})
     return [Board.from_json(organization=self, json_obj=obj) for obj in json_obj]
开发者ID:gEndelf,项目名称:py-trello,代码行数:8,代码来源:organization.py


注:本文中的board.Board.from_json方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。