本文整理汇总了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]
示例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)
示例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)
示例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]
示例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]