fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Thema
[librarian.git]
/
src
/
librarian
/
meta
/
types
/
base.py
1
class MetaValue:
2
has_language = True
3
4
def __init__(self, value):
5
self.value = value
6
7
@classmethod
8
def from_text(cls, text):
9
raise NotImplementedError()