mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
6 lines
92 B
Python
6 lines
92 B
Python
import re
|
|
|
|
|
|
def is_object_id(id):
|
|
return re.search('^[a-zA-Z0-9]{24}$', id) is not None
|