blob: 9e7be3ece88413d7a68644fd7e1a423fe9dafd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from session import HTTPMetawebSession, MetawebError, attrdict
from mqlkey import quotekey, unquotekey
LITERAL_TYPE_IDS = set([
"/type/int",
"/type/float",
"/type/boolean",
"/type/rawstring",
"/type/uri",
"/type/text",
"/type/datetime",
"/type/bytestring",
"/type/id",
"/type/key",
"/type/value",
"/type/enumeration"
])
|