Best Python code snippet using localstack_python
admin.py
Source:admin.py
...32 queryset.update(status=1)33 else:34 return messages.error(request, 'You are not authorised to perform such action')35 enable_rule.short_description = "Enable rule"36 def disable_rule(modeladmin, request, queryset):37 if queryset.count() == 0:38 return messages.error(request, 'Select atleast one entry')39 if request.user.is_superuser or request.user.has_perms(['ruleengine.CAN_DISABLE_RULE']):40 queryset.update(status=0)41 else:42 return messages.error(request, 'You are not authorised to perform such action')43 disable_rule.short_description = "Disable rule"44 actions = [enable_rule, disable_rule]45 def get_actions(self,request):46 # fetch the esisting actions47 actions = super(RuleAdmin,self).get_actions(request)48 # check if the user is authorized to view the action or not49 if not request.user.has_perms(['ruleengine.CAN_ENABLE_RULE']):50 if 'enable_rule' in actions:...
disable-ec2-scheduler.py
Source:disable-ec2-scheduler.py
...4import boto35logger = logging.getLogger()6logger.setLevel(logging.INFO)7events = boto3.client('events')8def disable_rule(name):9 events.disable_rule(10 Name = name11 )12 13 logger.info("Rule '" + name + "' is disabled successfully.")14 15def lambda_handler(event, context):16 name = event['Name']17 18 disable_rule(name=name + "-start")19 disable_rule(name=name + "-stop")20 21 return {22 'statusCode': 200,23 'body': json.dumps('Scheduler disabled successfully.')...
hooks.py
Source:hooks.py
1# Copyright 2019 Camptocamp SA2# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)3from odoo import api, SUPERUSER_ID4def disable_rule(cr, registry):5 """disable rule for multicompanies so consolidation manager can access6 account, earlier was done in yml """7 env = api.Environment(cr, SUPERUSER_ID, {})8 rule = env.ref('account.account_comp_rule')9 rule.active = False10def post_init(cr, registry):...
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!!