Best Python code snippet using localstack_python
ec2_listener.py
Source:ec2_listener.py
2import re3from localstack.services.generic_proxy import ProxyListener4from localstack.utils.common import to_str5LOG = logging.getLogger(__name__)6def fix_creation_date(method, path, response):7 try:8 content = to_str(response._content)9 except Exception:10 LOG.info("Unable to convert EC2 response to string: %s", response._content)11 return12 response._content = re.sub(13 r">\s*([0-9-]+) ([0-9:.]+)Z?\s*</creationTimestamp>",14 r">\1T\2Z</creationTimestamp>",15 content,16 flags=re.DOTALL | re.MULTILINE,17 )18 response.headers["Content-Length"] = str(len(response._content))19def fix_error_tag(response):20 # fix error root element from moto21 response._content = re.sub(22 r"<(/?)ErrorResponse", r"<\1Response", to_str(response.content or "")23 )24class ProxyListenerEC2(ProxyListener):25 def return_response(self, method, path, data, headers, response):26 if response.content:27 fix_creation_date(method, path, response)28 fix_error_tag(response)29# instantiate listener...
0023_auto_20160921_0946.py
Source:0023_auto_20160921_0946.py
1# -*- coding: utf-8 -*-2from __future__ import unicode_literals3from django.db import migrations4def fix_creation_date(apps, schema_editor):5 Subscription = apps.get_model("subscribe", "Subscription")6 Order = apps.get_model("subscribe", "Order")7 for subscription in Subscription.objects.all():8 order = Order.objects.get(invoice_reference=subscription.invoice_reference)9 order.creation_date = subscription.creation_date10 order.save()11class Migration(migrations.Migration):12 dependencies = [13 ('subscribe', '0022_auto_20160919_0013'),14 ]15 operations = [16 migrations.RunPython(fix_creation_date),...
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!!