-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy path_sql.py
43 lines (31 loc) · 1.2 KB
/
_sql.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
# 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 SqlRow(_abc.SqlRow, collections.UserDict):
"""A SQL Row.
SqlRow objects are ''UserDict'' subclasses and behave like dicts.
"""
@classmethod
def from_json(cls, json_data: str) -> 'SqlRow':
"""Create a SqlRow from a JSON string."""
return cls.from_dict(json.loads(json_data))
@classmethod
def from_dict(cls, dct: dict) -> 'SqlRow':
"""Create a SqlRow 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 SqlRow"""
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'<SqlRow at 0x{id(self):0x}>'
)
class SqlRowList(_abc.SqlRowList, collections.UserList):
"A ''UserList'' subclass containing a list of :class:'~SqlRow' objects"
pass