Best Python code snippet using slash
tasks.py
Source:tasks.py
1from celery import current_app as app2import requests3from structlog import get_logger4from celery.exceptions import MaxRetriesExceededError5@app.task(bind=True)6def http_task(self, request_conf):7 requests.request(**request_conf)8@app.task(bind=True)9def report_session(self, session_id, screen_content):10 # to avoid circular import11 from ussd.core import ussd_session, UssdHandlerAbstract12 logger = get_logger(__name__).bind(13 action="report_session_task", session_id=session_id14 )15 logger.info('start')16 ussd_report_session_data = screen_content['ussd_report_session']17 session = ussd_session(session_id)18 if session.get('posted'):19 logger.info("session_already_reported", posted=session['posted'])20 return21 request_conf = UssdHandlerAbstract.render_request_conf(22 session,23 ussd_report_session_data['request_conf']24 )25 UssdHandlerAbstract.make_request(26 http_request_conf=request_conf,27 response_session_key_save=ussd_report_session_data['session_key'],28 session=session,29 logger=logger30 )31 # check if it is the desired effect32 for expr in ussd_report_session_data['validate_response']:33 if UssdHandlerAbstract.evaluate_jija_expression(34 expr['expression'],35 session=session36 ):37 session['posted'] = True38 session.save()39 return40 if ussd_report_session_data.get('retry_mechanism'):41 try:42 self.retry(**screen_content[43 'ussd_report_session']['retry_mechanism'])44 except MaxRetriesExceededError as e:...
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!!