How to create a record link in python driver script

In a python driver script access some records with a custom query search, we need to crear a record link for each result.

This could be done with this code:

# record search example
records_app = app.records.search(('New', EQ, 'No' ), limit=0)

for record in records_app:
  Link="https://domain.com/record/"+record.app.id+"/"+record.id

this will create an url link this: https://domain.com/record/ae3HWlW_Mjh4nmQzL/a4NKcevz3BQVmfpF9
change domain.com with your swimlane domain.