Best Python code snippet using lettuce-tools_python
types.py
Source:types.py
...3class JsonSerializable(object):4 def to_json(self):5 raise NotImplementedError6class Dictionaryable(object):7 def to_dic(self):8 raise NotImplementedError9class JsonDeserializable(object):10 @classmethod11 def de_json(cls, json_string):12 raise NotImplementedError13class KeyboardButton(Dictionaryable, JsonSerializable):14 def __init__(self, text: str, style: str = 'primary', callbackData: str = None, url: str = None):15 self.text = text16 self.callbackData = callbackData17 self.style = style18 self.url = url19 def to_json(self):20 return json.dumps(self.to_dic())21 def to_dic(self):22 json_dic = {'text': self.text}23 if self.callbackData:24 json_dic['callbackData'] = self.callbackData25 if self.style:26 json_dic['style'] = self.style27 if self.url:28 json_dic['url'] = self.url29 return json_dic30class InlineKeyboardMarkup(Dictionaryable, JsonSerializable):31 def __init__(self, buttons_in_row=8):32 self.buttons_in_row = buttons_in_row33 self.keyboard = []34 def add(self, *args):35 i = 136 row = []37 for button in args:38 row.append(button.to_dic())39 if i % self.buttons_in_row == 0:40 self.keyboard.append(row)41 row = []42 i += 143 self.keyboard.append(row) if len(row) > 0 else None44 def row(self, *args):45 btn_array = []46 for button in args:47 btn_array.append(button.to_dic())48 self.keyboard.append(btn_array)49 return self50 def to_json(self):51 return json.dumps(self.keyboard)52 def to_dic(self):53 return self.keyboard54class Style(Dictionaryable, JsonSerializable):55 def __init__(self):56 self.ranges = []57 def add(self, offset, length, args=None):58 range_ = { "offset": offset, "length": length }59 if args is not None:60 self.ranges.append({ **range_ , **args})61 else:62 self.ranges.append(range_)63 def to_dic(self):64 return self.ranges65 def to_json(self):66 return json.dumps(self.ranges)67class Format(Dictionaryable, JsonSerializable):68 def __init__(self):69 self.styles = {}70 def add(self, style, offset, length, args=None):71 StyleType(style)72 if style in self.styles.keys():73 self.styles[style].add(offset, length, args)74 else:75 newStyle = Style()76 newStyle.add(offset, length, args)77 self.styles[style] = newStyle78 def to_dic(self):79 return self.styles80 def to_json(self):81 result = {}82 for key in self.styles.keys():83 result[key] = self.styles[key].to_dic()...
신고 결과 받기.py
Source:신고 결과 받기.py
1def solution(id_list, report, k):2 answer = []3 to_dic = {}4 from_dic = {}5 for i in id_list:6 to_dic[i] = 07 from_dic[i] = [0]8 for r in set(report):9 from_id, to_id = r.split()10 to_dic[to_id] += 111 from_dic[from_id].append(to_id)12 for f in from_dic.keys():13 for v in from_dic[f][1:]:14 if to_dic[v] >= k:15 from_dic[f][0] += 116 answer.append(from_dic[f][0])...
신고결과받기.py
Source:신고결과받기.py
1def solution(id_list, report, k):2 answer = []3 to_dic = {}4 from_dic = {}5 for i in id_list:6 to_dic[i] = 07 from_dic[i] = [0]8 for r in set(report):9 from_id, to_id = r.split()10 to_dic[to_id] += 111 from_dic[from_id].append(to_id)12 for f in from_dic.keys():13 for v in from_dic[f][1:]:14 if to_dic[v] >= k:15 from_dic[f][0] += 116 answer.append(from_dic[f][0])...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!