import json from Orm import Channel from playhouse.shortcuts import model_to_dict, dict_to_model class ChannelService: def getOneByChannelId(channelId): return Channel.get_or_none(Channel.channelId == channelId)