fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Some prelim work on builder api.
[librarian.git]
/
src
/
librarian
/
meta
/
types
/
base.py
1
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
2
# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3
#
4
class MetaValue:
5
has_language = True
6
7
def __init__(self, value):
8
self.value = value
9
10
@classmethod
11
def from_text(cls, text):
12
raise NotImplementedError()