mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
Delete registry.py
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
""" Tablib - formats
|
||||
"""
|
||||
from collections import OrderedDict
|
||||
from .format import JSONFormat, CSVFormat
|
||||
|
||||
|
||||
class Registry(object):
|
||||
_formats = OrderedDict()
|
||||
|
||||
def register(self, key, format_or_path):
|
||||
# Create Databook.<format> read or read/write properties
|
||||
|
||||
# Create Dataset.<format> read or read/write properties,
|
||||
# and Dataset.get_<format>/set_<format> methods.
|
||||
self._formats[key] = format_or_path
|
||||
|
||||
def register_builtins(self):
|
||||
# Registration ordering matters for autodetection.
|
||||
self.register('csv', CSVFormat())
|
||||
self.register('json', JSONFormat())
|
||||
|
||||
def get_format(self, key):
|
||||
if key not in self._formats:
|
||||
raise Exception("OneForAll has no format '%s'." % key)
|
||||
return self._formats[key]
|
||||
|
||||
|
||||
registry = Registry()
|
||||
Reference in New Issue
Block a user