Best Python code snippet using localstack_python
guarsonapi.py
Source: guarsonapi.py
1import os2import requests3import base644import json5import time6session = requests.Session()7def login():8 params = {9 'username': os.getenv('apiusername'),10 'password': os.getenv('apipswd'),11 }12 session.post(os.getenv('apiurl') + 'api/login/', data=params)13 return session.cookies14 15def getCookie(): # Singleton of cookie16 try:17 token_payload = json.loads(base64.b64decode(session.cookies['jwt'].split('.')[1]).decode("utf-8"))18 if token_payload['exp'] < time.time(): # if cookie expired19 return login()20 except:21 if not session.cookies:22 return login()23 return session.cookies24"""def login(): # Login contra apiguarson en heroku25 params = {26 'username': os.getenv('apiusername'),27 'password': os.getenv('apipswd'),28 }29 response = requests.post(os.getenv('apiurl') + 'api/login/', data=params)30 return response.cookies"""31def setString(data):32 cadena = data['name'] + ':\n\n'33 if data['muzzle'] is not None:34 cadena = cadena + '-' + data['muzzle'] + '\n'35 if data['barrel'] is not None:36 cadena = cadena + '-' + data['barrel'] + '\n'37 if data['laser'] is not None:38 cadena = cadena + '-' + data['laser'] + '\n'39 if data['optic'] is not None:40 cadena = cadena + '-' + data['optic'] + '\n'41 if data['stock'] is not None:42 cadena = cadena + '-' + data['stock'] + '\n'43 if data['underbarrel'] is not None:44 cadena = cadena + '-' + data['underbarrel'] + '\n'45 if data['magazine'] is not None:46 cadena = cadena + '-' + data['magazine'] + '\n'47 if data['ammunition'] is not None:48 cadena = cadena + '-' + data['ammunition'] + '\n'49 if data['reargrip'] is not None:50 cadena = cadena + '-' + data['reargrip'] + '\n'51 if data['perk'] is not None:52 cadena = cadena + '-' + data['perk'] + '\n'53 if data['perk2'] is not None:54 cadena = cadena + '-' + data['perk2'] + '\n'55 if data['alternative'] is not None:56 cadena = cadena + '\n' + data['alternative'] + '\n'57 if data['alternative2'] is not None:58 cadena = cadena + '\n' + data['alternative2']59 return cadena60def getListCommands(category): # Return list commands of a category61 data = requests.get(os.getenv('apiurl') + 'api/commands/', cookies=getCookie()).json()62 mssg = '\n' + category + ':'63 for command in data['categories'][category]:64 mssg = mssg + '\n-/' + command['name']65 return mssg66def getListWeaponCommands(): # Return list commands of a category67 data = requests.get(os.getenv('apiurl') + 'api/commands/', cookies=getCookie()).json()68 69 list_commands = '\nFusiles de Asalto:'70 for command in data['categories']['Fusiles de Asalto']:71 list_commands = list_commands + '\n-/' + command['name']72 list_commands = list_commands + '\n\nSubfusiles:'73 for command in data['categories']['Subfusiles']:74 list_commands = list_commands + '\n-/' + command['name']75 list_commands = list_commands + '\n\nEscopetas:'76 for command in data['categories']['Escopetas']:77 list_commands = list_commands + '\n-/' + command['name']78 list_commands = list_commands + '\n\nAmetralladoras Ligeras:'79 for command in data['categories']['Ametralladoras Ligeras']:80 list_commands = list_commands + '\n-/' + command['name']81 list_commands = list_commands + '\n\nFusiles Tacticos:'82 for command in data['categories']['Fusiles Tacticos']:83 list_commands = list_commands + '\n-/' + command['name']84 list_commands = list_commands + '\n\nFusiles de Precision:'85 for command in data['categories']['Fusiles de Precision']:86 list_commands = list_commands + '\n-/' + command['name']87 list_commands = list_commands + '\n\nPistolas:'88 for command in data['categories']['Pistolas']:89 list_commands = list_commands + '\n-/' + command['name']90 return list_commands91def getLobbyFromApi(mode):92 data = requests.get(os.getenv('apiurl') + 'api/mode/' + mode[mode.find('/')+1:] + '/', cookies=getCookie()).json() # Quito / si el nombre esta compuesto en 293 try:94 return data['mode'][0]['name'] + '\n'95 except:96 return 'MODO DESCONOCIDO\n' + mode +'\n'97def getWeaponFromApi(command):98 data = requests.get(os.getenv('apiurl') + 'api/weapons/?command=' + command, cookies=getCookie()).json()99 try:100 return setString(data['weapons'][0])101 except:...
list_manipulator.py
Source: list_manipulator.py
1lists = [int(el) for el in input().split()]2command = input()3def exchange(index):4 return lists[index + 1:] + lists[:index + 1]5def checker(r):6 new_list = []7 for i in range(len(lists)):8 if lists[i] == r:9 new_list.append(i)10 return new_list[-1]11def max_even():12 try:13 result = max([el for el in lists if el % 2 == 0])14 return checker(result)15 except:16 return "No matches"17def max_odd():18 try:19 result = max([el for el in lists if el % 2 == 1])20 return checker(result)21 except:22 return "No matches"23def min_even():24 try:25 result = min([el for el in lists if el % 2 == 0])26 return checker(result)27 except:28 return "No matches"29def min_odd():30 try:31 result = min([el for el in lists if el % 2 == 1])32 return checker(result)33 except:34 return "No matches"35def find_evens():36 result = []37 for el in lists:38 if el % 2 == 0:39 result.append(el)40 return result41def find_odds():42 result = []43 for el in lists:44 if el % 2 == 1:45 result.append(el)46 return result47def first_even_counter(count):48 if count > len(lists):49 return "Invalid count"50 result = find_evens()51 result = result[:count]52 return result53def first_odd_counter(count):54 if count > len(lists):55 return "Invalid count"56 result = find_odds()57 result = result[:count]58 return result59def last_even_counter(count):60 if count > len(lists):61 return "Invalid count"62 result = find_evens()63 return result[-count:]64def last_odd_counter(count):65 if count > len(lists):66 return "Invalid count"67 result = find_odds()68 return result[-count:]69while not command == "end":70 list_commands = command.split()71 if list_commands[0] == "exchange":72 index = int(list_commands[1])73 if index in range(0, len(lists)):74 lists = exchange(index)75 else:76 print("Invalid index")77 elif list_commands[0] == "max":78 if list_commands[1] == "even":79 print(max_even())80 elif list_commands[1] == "odd":81 print(max_odd())82 elif list_commands[0] == "min":83 if list_commands[1] == "even":84 print(min_even())85 elif list_commands[1] == "odd":86 print(min_odd())87 elif list_commands[0] == "first":88 if list_commands[2] == "even":89 print(first_even_counter(int(list_commands[1])))90 elif list_commands[2] == "odd":91 print(first_odd_counter(int(list_commands[1])))92 elif list_commands[0] == "last":93 if list_commands[2] == "even":94 print(last_even_counter(int(list_commands[1])))95 elif list_commands[2] == "odd":96 print(last_odd_counter(int(list_commands[1])))97 command = input()...
day8.py
Source: day8.py
1commands = [line.rstrip() for line in open("Day_8_2020.txt", "r")]2def check_loop(list_commands):3 acc = 04 pointer = 05 pointers_seen = []6 while True:7 if pointer in pointers_seen:8 return acc, "In a loop"9 elif pointer >= len(list_commands):10 return acc, "Reached the end"11 else:12 pointers_seen.append(pointer)13 if list_commands[pointer].split()[0] == "nop":14 pointer += 115 elif list_commands[pointer].split()[0] == "acc":16 acc += int(list_commands[pointer].split()[1])17 pointer += 118 elif list_commands[pointer].split()[0] == "jmp":19 pointer += int(list_commands[pointer].split()[1])20def swap_command(list_commands, before_swap, after_swap):21 for index in range(0, len(list_commands)):22 if list_commands[index].split()[0] == before_swap:23 list_commands[index] = after_swap + " " + list_commands[index].split()[1]24 acc, run = check_loop(list_commands)25 if run != "In a loop":26 return acc27 list_commands[index] = before_swap + " " + list_commands[index].split()[1]28# print(check_loop(commands))29print(swap_command(commands, "nop", "jmp"))...
Check out the latest blogs from LambdaTest on this topic:
The fact is not alien to us anymore that cross browser testing is imperative to enhance your application’s user experience. Enhanced knowledge of popular and highly acclaimed testing frameworks goes a long way in developing a new app. It holds more significance if you are a full-stack developer or expert programmer.
QA testers have a unique role and responsibility to serve the customer. Serving the customer in software testing means protecting customers from application defects, failures, and perceived failures from missing or misunderstood requirements. Testing for known requirements based on documentation or discussion is the core of the testing profession. One unique way QA testers can both differentiate themselves and be innovative occurs when senseshaping is used to improve the application user experience.
Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.
Enterprise resource planning (ERP) is a form of business process management software—typically a suite of integrated applications—that assists a company in managing its operations, interpreting data, and automating various back-office processes. The introduction of a new ERP system is analogous to the introduction of a new product into the market. If the product is not handled appropriately, it will fail, resulting in significant losses for the business. Most significantly, the employees’ time, effort, and morale would suffer as a result of the procedure.
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!!