Data for the response is encoded in the ID URL
(url_id)
| 30 | |
| 31 | |
| 32 | def split_id(url_id): |
| 33 | """ |
| 34 | Data for the response is encoded in the ID URL |
| 35 | """ |
| 36 | parts = url_id.split("/") |
| 37 | data = {} |
| 38 | for i in range(1, len(parts) - 1, 2): |
| 39 | data[parts[i]] = parts[i + 1] |
| 40 | return data |
| 41 | |
| 42 | |
| 43 | def process_soa_record(logger, entry): |