Best Python code snippet using autotest_python
rpc_interface.py
Source:rpc_interface.py  
...569            models.RecurringRun.query_objects(filter_data),570            ('job', 'owner'))571def get_num_recurring(**filter_data):572    return models.RecurringRun.query_count(filter_data)573def delete_recurring_runs(**filter_data):574    to_delete = models.RecurringRun.query_objects(filter_data)575    to_delete.delete()576def create_recurring_run(job_id, start_date, loop_period, loop_count):577    owner = models.User.current_user().login578    job = models.Job.objects.get(id=job_id)579    return job.create_recurring_job(start_date=start_date,580                                    loop_period=loop_period,581                                    loop_count=loop_count,582                                    owner=owner)583# other584def echo(data=""):585    """\586    Returns a passed in string. For doing a basic test to see if RPC calls587    can successfully be made....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!!
