-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy path_cosmosdb.py
44 lines (31 loc) · 1.24 KB
/
_cosmosdb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import collections
from azure.functions import _json as json
from . import _abc
class Document(_abc.Document, collections.UserDict):
"""An Azure Document.
Document objects are ``UserDict`` subclasses and behave like dicts.
"""
@classmethod
def from_json(cls, json_data: str) -> 'Document':
"""Create a Document from a JSON string."""
return cls.from_dict(json.loads(json_data))
@classmethod
def from_dict(cls, dct: dict) -> 'Document':
"""Create a Document from a dict object."""
return cls({k: v for k, v in dct.items()})
def to_json(self) -> str:
"""Return the JSON representation of the document."""
return json.dumps(dict(self))
def __getitem__(self, key):
return collections.UserDict.__getitem__(self, key)
def __setitem__(self, key, value):
return collections.UserDict.__setitem__(self, key, value)
def __repr__(self) -> str:
return (
f'<azure.Document at 0x{id(self):0x}>'
)
class DocumentList(_abc.DocumentList, collections.UserList):
"A ``UserList`` subclass containing a list of :class:`~Document` objects"
pass