import csv from io import StringIO __all__ = ("csv_to_list") def csv_to_list(value): if isinstance(value, str) and value: reader = csv.reader(StringIO(value)) parsed = next(reader) return parsed return []
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
source | Folder | 0755 |
|
|
__init__.py | File | 188 B | 0644 |
|
config.py | File | 2.29 KB | 0644 |
|
datatype.py | File | 3.03 KB | 0644 |
|
exception.py | File | 372 B | 0644 |
|
manager.py | File | 1.1 KB | 0644 |
|
setting.py | File | 1.67 KB | 0644 |
|
util.py | File | 241 B | 0644 |
|