13 lines
201 B
Python
13 lines
201 B
Python
"""
|
|
Miscellaneous utilities for the OLC system.
|
|
|
|
"""
|
|
import csv
|
|
|
|
|
|
def search_by_string(olcsession, query):
|
|
pass
|
|
|
|
|
|
def split_by_comma(string):
|
|
return csv.reader([string], skipinitialspace=True)
|