synapse 2.206.0__py311-none-any.whl → 2.207.0__py311-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of synapse might be problematic. Click here for more details.
- synapse/axon.py +4 -4
- synapse/lib/stormhttp.py +6 -6
- synapse/lib/stormtypes.py +43 -17
- synapse/lib/version.py +2 -2
- synapse/tests/test_axon.py +10 -0
- synapse/tests/test_lib_stormhttp.py +13 -0
- synapse/tests/test_lib_stormtypes.py +8 -0
- {synapse-2.206.0.dist-info → synapse-2.207.0.dist-info}/METADATA +1 -1
- {synapse-2.206.0.dist-info → synapse-2.207.0.dist-info}/RECORD +12 -12
- {synapse-2.206.0.dist-info → synapse-2.207.0.dist-info}/WHEEL +0 -0
- {synapse-2.206.0.dist-info → synapse-2.207.0.dist-info}/licenses/LICENSE +0 -0
- {synapse-2.206.0.dist-info → synapse-2.207.0.dist-info}/top_level.txt +0 -0
synapse/axon.py
CHANGED
|
@@ -1659,7 +1659,7 @@ class Axon(s_cell.Cell):
|
|
|
1659
1659
|
'code': resp.status,
|
|
1660
1660
|
'body': await resp.read(),
|
|
1661
1661
|
'reason': s_common.httpcodereason(resp.status),
|
|
1662
|
-
'headers':
|
|
1662
|
+
'headers': {str(k): v for k, v in resp.headers.items()},
|
|
1663
1663
|
}
|
|
1664
1664
|
return info
|
|
1665
1665
|
|
|
@@ -1706,7 +1706,7 @@ class Axon(s_cell.Cell):
|
|
|
1706
1706
|
'url': str(resp.url),
|
|
1707
1707
|
'code': resp.status,
|
|
1708
1708
|
'reason': s_common.httpcodereason(resp.status),
|
|
1709
|
-
'headers':
|
|
1709
|
+
'headers': {str(k): v for k, v in resp.headers.items()},
|
|
1710
1710
|
}
|
|
1711
1711
|
return info
|
|
1712
1712
|
|
|
@@ -1736,11 +1736,11 @@ class Axon(s_cell.Cell):
|
|
|
1736
1736
|
'ok': True,
|
|
1737
1737
|
'url': str(resp.real_url),
|
|
1738
1738
|
'code': resp.status,
|
|
1739
|
-
'headers':
|
|
1739
|
+
'headers': {str(k): v for k, v in resp.headers.items()},
|
|
1740
1740
|
'reason': s_common.httpcodereason(resp.status),
|
|
1741
1741
|
'request': {
|
|
1742
1742
|
'url': str(resp.request_info.real_url),
|
|
1743
|
-
'headers':
|
|
1743
|
+
'headers': {str(k): v for k, v in resp.request_info.headers.items()},
|
|
1744
1744
|
'method': str(resp.request_info.method),
|
|
1745
1745
|
}
|
|
1746
1746
|
}
|
synapse/lib/stormhttp.py
CHANGED
|
@@ -457,23 +457,23 @@ class LibHttp(s_stormtypes.Lib):
|
|
|
457
457
|
hnfo = {
|
|
458
458
|
'code': hist.status,
|
|
459
459
|
'reason': await self.codereason(hist.status),
|
|
460
|
-
'headers':
|
|
460
|
+
'headers': {str(k): v for k, v in hist.headers.items()},
|
|
461
461
|
'url': str(hist.url),
|
|
462
462
|
# aiohttp has already closed the connection by this point
|
|
463
463
|
# so there is no connection to read a body from.
|
|
464
464
|
'body': b'',
|
|
465
465
|
'history': [],
|
|
466
|
-
'request_headers':
|
|
466
|
+
'request_headers': {str(k): v for k, v in hist.request_info.headers.items()}
|
|
467
467
|
}
|
|
468
468
|
history.append(hnfo)
|
|
469
469
|
info = {
|
|
470
470
|
'code': resp.status,
|
|
471
471
|
'reason': await self.codereason(resp.status),
|
|
472
|
-
'headers':
|
|
472
|
+
'headers': {str(k): v for k, v in resp.headers.items()},
|
|
473
473
|
'url': str(resp.url),
|
|
474
474
|
'body': await resp.read(),
|
|
475
475
|
'history': history,
|
|
476
|
-
'request_headers':
|
|
476
|
+
'request_headers': {str(k): v for k, v in resp.request_info.headers.items()},
|
|
477
477
|
}
|
|
478
478
|
return HttpResp(info)
|
|
479
479
|
|
|
@@ -492,11 +492,11 @@ class LibHttp(s_stormtypes.Lib):
|
|
|
492
492
|
'err': err,
|
|
493
493
|
'code': -1,
|
|
494
494
|
'reason': reason,
|
|
495
|
-
'headers':
|
|
495
|
+
'headers': {},
|
|
496
496
|
'url': url,
|
|
497
497
|
'body': b'',
|
|
498
498
|
'history': [],
|
|
499
|
-
'request_headers':
|
|
499
|
+
'request_headers': {},
|
|
500
500
|
}
|
|
501
501
|
return HttpResp(info)
|
|
502
502
|
|
synapse/lib/stormtypes.py
CHANGED
|
@@ -1235,7 +1235,7 @@ class LibBase(Lib):
|
|
|
1235
1235
|
Examples:
|
|
1236
1236
|
Fire an event called ``demo`` with some data::
|
|
1237
1237
|
|
|
1238
|
-
|
|
1238
|
+
storm> $foo='bar' $lib.fire('demo', foo=$foo, knight='ni')
|
|
1239
1239
|
...
|
|
1240
1240
|
('storm:fire', {'type': 'demo', 'data': {'foo': 'bar', 'knight': 'ni'}})
|
|
1241
1241
|
...
|
|
@@ -1268,7 +1268,7 @@ class LibBase(Lib):
|
|
|
1268
1268
|
Examples:
|
|
1269
1269
|
Create a dictionary object with a key whose value is null, and call ``$lib.fire()`` with it::
|
|
1270
1270
|
|
|
1271
|
-
|
|
1271
|
+
storm> $d=({"key": $lib.null}) $lib.fire('demo', d=$d)
|
|
1272
1272
|
('storm:fire', {'type': 'demo', 'data': {'d': {'key': None}}})
|
|
1273
1273
|
''',
|
|
1274
1274
|
'type': 'null', },
|
|
@@ -1295,7 +1295,7 @@ class LibBase(Lib):
|
|
|
1295
1295
|
Examples:
|
|
1296
1296
|
Conditionally print a statement based on the constant value::
|
|
1297
1297
|
|
|
1298
|
-
|
|
1298
|
+
storm> if $lib.true { $lib.print('Is True') } else { $lib.print('Is False') }
|
|
1299
1299
|
Is True
|
|
1300
1300
|
''',
|
|
1301
1301
|
'type': 'boolean', },
|
|
@@ -1305,7 +1305,7 @@ class LibBase(Lib):
|
|
|
1305
1305
|
Examples:
|
|
1306
1306
|
Conditionally print a statement based on the constant value::
|
|
1307
1307
|
|
|
1308
|
-
|
|
1308
|
+
storm> if $lib.false { $lib.print('Is True') } else { $lib.print('Is False') }
|
|
1309
1309
|
Is False''',
|
|
1310
1310
|
'type': 'boolean', },
|
|
1311
1311
|
{'name': 'text', 'desc': 'Get a Storm Text object. This is deprecated; please use a list to append strings to, and then use ``$lib.str.join()`` to join them on demand.',
|
|
@@ -1344,19 +1344,19 @@ class LibBase(Lib):
|
|
|
1344
1344
|
Examples:
|
|
1345
1345
|
Print a simple string::
|
|
1346
1346
|
|
|
1347
|
-
|
|
1347
|
+
storm> $lib.print("Hello world!")
|
|
1348
1348
|
Hello world!
|
|
1349
1349
|
|
|
1350
1350
|
Format and print string based on variables::
|
|
1351
1351
|
|
|
1352
|
-
|
|
1352
|
+
storm> $d=({"key1": (1), "key2": "two"})
|
|
1353
1353
|
for ($key, $value) in $d { $lib.print('{k} => {v}', k=$key, v=$value) }
|
|
1354
1354
|
key1 => 1
|
|
1355
1355
|
key2 => two
|
|
1356
1356
|
|
|
1357
1357
|
Use values off of a node to format and print string::
|
|
1358
1358
|
|
|
1359
|
-
|
|
1359
|
+
storm> inet:ipv4:asn
|
|
1360
1360
|
$lib.print("node: {ndef}, asn: {asn}", ndef=$node.ndef(), asn=:asn) | spin
|
|
1361
1361
|
node: ('inet:ipv4', 16909060), asn: 1138
|
|
1362
1362
|
|
|
@@ -1376,7 +1376,7 @@ class LibBase(Lib):
|
|
|
1376
1376
|
Examples:
|
|
1377
1377
|
Generate a sequence of integers based on the size of an array::
|
|
1378
1378
|
|
|
1379
|
-
|
|
1379
|
+
storm> $a=(foo,bar,(2)) for $i in $lib.range($lib.len($a)) {$lib.fire('test', indx=$i, valu=$a.$i)}
|
|
1380
1380
|
Executing query at 2021/03/22 19:25:48.835
|
|
1381
1381
|
('storm:fire', {'type': 'test', 'data': {'index': 0, 'valu': 'foo'}})
|
|
1382
1382
|
('storm:fire', {'type': 'test', 'data': {'index': 1, 'valu': 'bar'}})
|
|
@@ -2029,7 +2029,7 @@ class LibStr(Lib):
|
|
|
2029
2029
|
Examples:
|
|
2030
2030
|
Join together a list of strings with a dot separator::
|
|
2031
2031
|
|
|
2032
|
-
|
|
2032
|
+
storm> $foo=$lib.str.join('.', ('rep', 'vtx', 'tag')) $lib.print($foo)
|
|
2033
2033
|
|
|
2034
2034
|
rep.vtx.tag''',
|
|
2035
2035
|
'type': {'type': 'function', '_funcname': 'join',
|
|
@@ -2050,7 +2050,7 @@ class LibStr(Lib):
|
|
|
2050
2050
|
Examples:
|
|
2051
2051
|
Format a string with a fixed argument and a variable::
|
|
2052
2052
|
|
|
2053
|
-
|
|
2053
|
+
storm> $list=(1,2,3,4)
|
|
2054
2054
|
$str=$lib.str.format('Hello {name}, your list is {list}!', name='Reader', list=$list)
|
|
2055
2055
|
$lib.print($str)
|
|
2056
2056
|
|
|
@@ -2324,7 +2324,7 @@ class LibAxon(Lib):
|
|
|
2324
2324
|
Examples:
|
|
2325
2325
|
Save a base64 encoded buffer to the Axon::
|
|
2326
2326
|
|
|
2327
|
-
|
|
2327
|
+
storm> $s='dGVzdA==' $buf=$lib.base64.decode($s) ($size, $sha256)=$lib.axon.put($buf)
|
|
2328
2328
|
$lib.print('size={size} sha256={sha256}', size=$size, sha256=$sha256)
|
|
2329
2329
|
|
|
2330
2330
|
size=4 sha256=9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08''',
|
|
@@ -2340,7 +2340,7 @@ class LibAxon(Lib):
|
|
|
2340
2340
|
Check if the Axon has a given file::
|
|
2341
2341
|
|
|
2342
2342
|
# This example assumes the Axon does have the bytes
|
|
2343
|
-
|
|
2343
|
+
storm> if $lib.axon.has(9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08) {
|
|
2344
2344
|
$lib.print("Has bytes")
|
|
2345
2345
|
} else {
|
|
2346
2346
|
$lib.print("Does not have bytes")
|
|
@@ -2812,7 +2812,7 @@ class LibBytes(Lib):
|
|
|
2812
2812
|
Examples:
|
|
2813
2813
|
Save a base64 encoded buffer to the Axon::
|
|
2814
2814
|
|
|
2815
|
-
|
|
2815
|
+
storm> $s='dGVzdA==' $buf=$lib.base64.decode($s) ($size, $sha256)=$lib.bytes.put($buf)
|
|
2816
2816
|
$lib.print('size={size} sha256={sha256}', size=$size, sha256=$sha256)
|
|
2817
2817
|
|
|
2818
2818
|
size=4 sha256=9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08''',
|
|
@@ -2828,7 +2828,7 @@ class LibBytes(Lib):
|
|
|
2828
2828
|
Check if the Axon has a given file::
|
|
2829
2829
|
|
|
2830
2830
|
# This example assumes the Axon does have the bytes
|
|
2831
|
-
|
|
2831
|
+
storm> if $lib.bytes.has(9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08) {
|
|
2832
2832
|
$lib.print("Has bytes")
|
|
2833
2833
|
} else {
|
|
2834
2834
|
$lib.print("Does not have bytes")
|
|
@@ -3002,7 +3002,7 @@ class LibTime(Lib):
|
|
|
3002
3002
|
Examples:
|
|
3003
3003
|
Convert a timestamp from seconds to millis and format it::
|
|
3004
3004
|
|
|
3005
|
-
|
|
3005
|
+
storm> $seconds=1594684800 $millis=$lib.time.fromunix($seconds)
|
|
3006
3006
|
$str=$lib.time.format($millis, '%A %d, %B %Y') $lib.print($str)
|
|
3007
3007
|
|
|
3008
3008
|
Tuesday 14, July 2020''',
|
|
@@ -3017,7 +3017,7 @@ class LibTime(Lib):
|
|
|
3017
3017
|
Examples:
|
|
3018
3018
|
Parse a string as for its month/day/year value into a timestamp::
|
|
3019
3019
|
|
|
3020
|
-
|
|
3020
|
+
storm> $s='06/01/2020' $ts=$lib.time.parse($s, '%m/%d/%Y') $lib.print($ts)
|
|
3021
3021
|
|
|
3022
3022
|
1590969600000''',
|
|
3023
3023
|
'type': {'type': 'function', '_funcname': '_parse',
|
|
@@ -3034,7 +3034,7 @@ class LibTime(Lib):
|
|
|
3034
3034
|
Examples:
|
|
3035
3035
|
Format a timestamp into a string::
|
|
3036
3036
|
|
|
3037
|
-
|
|
3037
|
+
storm> $now=$lib.time.now() $str=$lib.time.format($now, '%A %d, %B %Y') $lib.print($str)
|
|
3038
3038
|
|
|
3039
3039
|
Tuesday 14, July 2020''',
|
|
3040
3040
|
'type': {'type': 'function', '_funcname': '_format',
|
|
@@ -4659,6 +4659,26 @@ class Str(Prim):
|
|
|
4659
4659
|
{'name': 'json', 'desc': 'Parse a JSON string and return the deserialized data.',
|
|
4660
4660
|
'type': {'type': 'function', '_funcname': '_methStrJson', 'args': (),
|
|
4661
4661
|
'returns': {'type': 'prim', 'desc': 'The JSON deserialized object.', }}},
|
|
4662
|
+
{'name': 'join', 'desc': '''
|
|
4663
|
+
Join items into a string using the current string as a separator.
|
|
4664
|
+
|
|
4665
|
+
Examples:
|
|
4666
|
+
Join together a list of strings with a dot separator::
|
|
4667
|
+
|
|
4668
|
+
storm> $sepr='.' $foo=$sepr.join(('rep', 'vtx', 'tag')) $lib.print($foo)
|
|
4669
|
+
|
|
4670
|
+
rep.vtx.tag
|
|
4671
|
+
|
|
4672
|
+
Join values inline together with a dot separator::
|
|
4673
|
+
|
|
4674
|
+
storm> $foo=('.').join(('rep', 'vtx', 'tag')) $lib.print($foo)
|
|
4675
|
+
|
|
4676
|
+
rep.vtx.tag''',
|
|
4677
|
+
'type': {'type': 'function', '_funcname': '_methStrJoin',
|
|
4678
|
+
'args': (
|
|
4679
|
+
{'name': 'items', 'type': 'list', 'desc': 'A list of items to join together.', },
|
|
4680
|
+
),
|
|
4681
|
+
'returns': {'type': 'str', 'desc': 'The joined string.', }}},
|
|
4662
4682
|
)
|
|
4663
4683
|
_storm_typename = 'str'
|
|
4664
4684
|
_ismutable = False
|
|
@@ -4689,6 +4709,7 @@ class Str(Prim):
|
|
|
4689
4709
|
'reverse': self._methStrReverse,
|
|
4690
4710
|
'format': self._methStrFormat,
|
|
4691
4711
|
'json': self._methStrJson,
|
|
4712
|
+
'join': self._methStrJoin,
|
|
4692
4713
|
}
|
|
4693
4714
|
|
|
4694
4715
|
def __int__(self):
|
|
@@ -4808,6 +4829,11 @@ class Str(Prim):
|
|
|
4808
4829
|
async def _methStrJson(self):
|
|
4809
4830
|
return s_json.loads(self.valu)
|
|
4810
4831
|
|
|
4832
|
+
@stormfunc(readonly=True)
|
|
4833
|
+
async def _methStrJoin(self, items):
|
|
4834
|
+
strs = [await tostr(item) async for item in toiter(items)]
|
|
4835
|
+
return self.valu.join(strs)
|
|
4836
|
+
|
|
4811
4837
|
@registry.registerType
|
|
4812
4838
|
class Bytes(Prim):
|
|
4813
4839
|
'''
|
synapse/lib/version.py
CHANGED
|
@@ -223,6 +223,6 @@ def reqVersion(valu, reqver,
|
|
|
223
223
|
##############################################################################
|
|
224
224
|
# The following are touched during the release process by bumpversion.
|
|
225
225
|
# Do not modify these directly.
|
|
226
|
-
version = (2,
|
|
226
|
+
version = (2, 207, 0)
|
|
227
227
|
verstring = '.'.join([str(x) for x in version])
|
|
228
|
-
commit = '
|
|
228
|
+
commit = 'b5307edb2fd8ba01d47f5f38bcd6033237deda7e'
|
synapse/tests/test_axon.py
CHANGED
|
@@ -19,6 +19,7 @@ import synapse.common as s_common
|
|
|
19
19
|
import synapse.telepath as s_telepath
|
|
20
20
|
|
|
21
21
|
import synapse.lib.coro as s_coro
|
|
22
|
+
import synapse.lib.json as s_json
|
|
22
23
|
import synapse.lib.certdir as s_certdir
|
|
23
24
|
import synapse.lib.httpapi as s_httpapi
|
|
24
25
|
import synapse.lib.msgpack as s_msgpack
|
|
@@ -1005,6 +1006,15 @@ bar baz",vv
|
|
|
1005
1006
|
self.eq(True, resp['ok'])
|
|
1006
1007
|
self.eq(200, resp['code'])
|
|
1007
1008
|
|
|
1009
|
+
jsonq = f'''$resp = $lib.axon.wput($sha256, "https://127.0.0.1:{port}/api/v1/pushfile", ssl=(0))
|
|
1010
|
+
return ( $lib.json.save($resp) )
|
|
1011
|
+
'''
|
|
1012
|
+
resp = await core.callStorm(jsonq, opts=opts)
|
|
1013
|
+
self.isinstance(resp, str)
|
|
1014
|
+
resp = s_json.loads(resp)
|
|
1015
|
+
self.eq(True, resp['ok'])
|
|
1016
|
+
self.eq(200, resp['code'])
|
|
1017
|
+
|
|
1008
1018
|
opts = {'vars': {'sha256': s_common.ehex(s_common.buid())}}
|
|
1009
1019
|
resp = await core.callStorm(q, opts=opts)
|
|
1010
1020
|
self.eq(False, resp['ok'])
|
|
@@ -473,6 +473,19 @@ class StormHttpTest(s_test.SynTest):
|
|
|
473
473
|
data = resp.get('result')
|
|
474
474
|
self.eq(data.get('params'), {'foo': ['bar', 'baz'], 'key': ["('valu',)"]})
|
|
475
475
|
|
|
476
|
+
# headers are safe to serialize
|
|
477
|
+
q = '''
|
|
478
|
+
$headers = ({'Foo': 'Bar'})
|
|
479
|
+
$resp = $lib.inet.http.request(GET, $url, headers=$headers, ssl_verify=$lib.false)
|
|
480
|
+
return ( ($lib.json.save($resp.headers), $lib.json.save($resp.request_headers)) )
|
|
481
|
+
'''
|
|
482
|
+
resp = await core.callStorm(q, opts=opts)
|
|
483
|
+
(headers, req_headers) = resp
|
|
484
|
+
headers = s_json.loads(headers)
|
|
485
|
+
self.eq(headers.get('Content-Type'), 'application/json; charset=UTF-8')
|
|
486
|
+
req_headers = s_json.loads(req_headers)
|
|
487
|
+
self.eq(req_headers.get('Foo'), 'Bar')
|
|
488
|
+
|
|
476
489
|
async def test_storm_http_post(self):
|
|
477
490
|
|
|
478
491
|
async with self.getTestCore() as core:
|
|
@@ -1406,6 +1406,14 @@ class StormTypesTest(s_test.SynTest):
|
|
|
1406
1406
|
|
|
1407
1407
|
self.eq(((1, 2, 3)), await core.callStorm('return(("[1, 2, 3]").json())'))
|
|
1408
1408
|
|
|
1409
|
+
self.eq('hehe,haha', await core.callStorm("$sepr=',' $l=(hehe, haha) return( $sepr.join($l) )"))
|
|
1410
|
+
self.eq('hehehaha', await core.callStorm("$sepr='' $l=(hehe, haha) return( $sepr.join($l) )"))
|
|
1411
|
+
self.eq('a|++|b|++|c', await core.callStorm("$sepr='|++|' $l=(a, b, c) return( $sepr.join($l) )"))
|
|
1412
|
+
self.eq('hehe,haha', await core.callStorm("$l=(hehe, haha) return( (',').join($l) )"))
|
|
1413
|
+
self.eq('hehehaha', await core.callStorm("$l=(hehe, haha) return( ('').join($l) )"))
|
|
1414
|
+
self.eq('', await core.callStorm("$sepr=',' $l=() return( $sepr.join($l) )"))
|
|
1415
|
+
self.eq('', await core.callStorm("$sepr='' $l=() return( $sepr.join($l) )"))
|
|
1416
|
+
|
|
1409
1417
|
with self.raises(s_exc.BadJsonText):
|
|
1410
1418
|
await core.callStorm('return(("foo").json())')
|
|
1411
1419
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
synapse/__init__.py,sha256=R2kOXlF5j-8m6G0JkHuN7rXRPg_tHLmbMxr__94mHQk,1145
|
|
2
|
-
synapse/axon.py,sha256=
|
|
2
|
+
synapse/axon.py,sha256=HtKPfSDNt3ltOaQC2P_7satXhgdxf7fO2mGAioF78Iw,66029
|
|
3
3
|
synapse/cells.py,sha256=eNvdglfAoTURVhGOLGcgMXCGpfsIX1a02SQnyiklo3E,308
|
|
4
4
|
synapse/common.py,sha256=bRbhV_alX6duXvTcbJ2KRZs8qUsD2SxQ6ww6v9DKKiQ,36886
|
|
5
5
|
synapse/cortex.py,sha256=T3bwDtkc1O9ugDh_4jNJIC_CFmvOEnkkFNcuVB5y9cQ,262214
|
|
@@ -145,9 +145,9 @@ synapse/lib/storm.lark,sha256=7ipxFPsM4i1zYTUrslCp90SPlghQEbtQT54vYPcxD4A,27408
|
|
|
145
145
|
synapse/lib/storm.py,sha256=HX8oBJ-jf39EnzqK6EDFm86vovEKvYP_y0cbDXDII_k,205398
|
|
146
146
|
synapse/lib/storm_format.py,sha256=9cE8WNPYTcqgRakIqkmIQzOr16Hqbj_sM1QabHug3i0,4908
|
|
147
147
|
synapse/lib/stormctrl.py,sha256=3UC2LOHClC17JwYNuo8NeyntuAvIXphjenXEzVP33mY,2523
|
|
148
|
-
synapse/lib/stormhttp.py,sha256=
|
|
148
|
+
synapse/lib/stormhttp.py,sha256=3BdaZM6wC3iuYc4ryxtroyTdGhGhei40EoKiH4qSwIE,28877
|
|
149
149
|
synapse/lib/stormsvc.py,sha256=dKREBhzYAncOXBbI-FYLRy9VusGIbRyF0TaDDz7mMXw,7581
|
|
150
|
-
synapse/lib/stormtypes.py,sha256=
|
|
150
|
+
synapse/lib/stormtypes.py,sha256=rpVNgnaaNIy0xC7vi8vspikHnaBbbT95wOwtbyKwtZ0,401403
|
|
151
151
|
synapse/lib/stormwhois.py,sha256=w7N2oCyMljNvi_sRt_bZb5BJwWwYkVGcRd7H_0oHY8Q,2554
|
|
152
152
|
synapse/lib/structlog.py,sha256=v5MK5jtJIRSF-E4y4fQuzEVKmbocu8ByFLDTY8Ybjpk,1336
|
|
153
153
|
synapse/lib/task.py,sha256=EDcJScPFJ5QcbKCg7V7HTPS6omh0nIV-6dilv0OpXGk,6103
|
|
@@ -158,7 +158,7 @@ synapse/lib/time.py,sha256=FKTYwpdvpuAj8p8sSodRjOxoA7Vu67CIbbXz55gtghk,9231
|
|
|
158
158
|
synapse/lib/trigger.py,sha256=mnfkoBHB88JfqPoxb5oflvAaBKZpNvYdxP247YS53fE,20697
|
|
159
159
|
synapse/lib/types.py,sha256=plPuYWNaJmCWjYIOWIkDhh8NhTONATZD6d85qf2NUfM,69740
|
|
160
160
|
synapse/lib/urlhelp.py,sha256=ljhnF91z9ihyOLdZZ6OoQYCN1WYjOj1imukD45xiKU0,3320
|
|
161
|
-
synapse/lib/version.py,sha256=
|
|
161
|
+
synapse/lib/version.py,sha256=qXrczOriBeFR3cpL6Pd8LvmDo-9cXjRd2yKX_XMznF0,7162
|
|
162
162
|
synapse/lib/view.py,sha256=-yuxjVBp8I1RMPuxVfBJzjx64aPBo-Rr_-9vxKVmx_w,62071
|
|
163
163
|
synapse/lib/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
164
|
synapse/lib/crypto/coin.py,sha256=_dhlkzIrHT8BvHdJOWK7PDThz3sK3dDRnWAUqjRpZJc,4910
|
|
@@ -268,7 +268,7 @@ synapse/servers/jsonstor.py,sha256=cnt0PESw5qHunEVHCyT-eKOWgywMqe0WNPDtljVgt3c,2
|
|
|
268
268
|
synapse/servers/stemcell.py,sha256=nHACvCWqG2zWTYIo8QvSWi5EBXgYI_3XX7d1-K7xjvg,1192
|
|
269
269
|
synapse/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
270
|
synapse/tests/nopmod.py,sha256=sVRGWOVSzYYkDLonKTWbWU4PHYGDRkrUDyS1UEbdqgQ,70
|
|
271
|
-
synapse/tests/test_axon.py,sha256=
|
|
271
|
+
synapse/tests/test_axon.py,sha256=aBjvNB4M0jqDHJ7zHNgsp8V-CpJuSpHyrGnRk1RcKDQ,50366
|
|
272
272
|
synapse/tests/test_cmds_boss.py,sha256=SdBwM2qJHFzzfrjWYiZOLBKeye8uru7KeJ3NU_YSkWw,4718
|
|
273
273
|
synapse/tests/test_cmds_cortex.py,sha256=hVe4xxp14vFHbJywnWxFLkDvbxyc_XHBcP6HOUA85Ag,17187
|
|
274
274
|
synapse/tests/test_cmds_hive.py,sha256=YospZkpYj3kjSFxpY_BwSbWLSU200AX1uYJzgi_wtb4,5904
|
|
@@ -337,7 +337,7 @@ synapse/tests/test_lib_spooled.py,sha256=Ki9UnzTPUtw7devwN_M0a8uwOst81fGQtGSVqSS
|
|
|
337
337
|
synapse/tests/test_lib_storm.py,sha256=uNvx2didXmYn9A5QSggUFBR6EgR8toX-mcUbiig508M,241097
|
|
338
338
|
synapse/tests/test_lib_storm_format.py,sha256=tEZgQMmKAeG8FQZE5HUjOT7bnKawVTpNaVQh_3Wa630,277
|
|
339
339
|
synapse/tests/test_lib_stormctrl.py,sha256=1vY7PGjgmz3AibgSiGcp_G4NSYl9YNifWdjPB0CDf1g,2877
|
|
340
|
-
synapse/tests/test_lib_stormhttp.py,sha256=
|
|
340
|
+
synapse/tests/test_lib_stormhttp.py,sha256=agYG3ToF36O7i140WJ7PhQn4m13zfk4a2i4_3QQphQM,46169
|
|
341
341
|
synapse/tests/test_lib_stormlib_aha.py,sha256=XhBokRnanwe2vWZf0PcwyZgJE3mu-7V4xKNhFf7Go4U,17782
|
|
342
342
|
synapse/tests/test_lib_stormlib_auth.py,sha256=-y7bZwmeM8Qz-hqw115UdBT_c2m-wIUS26Oau-IJuH8,61338
|
|
343
343
|
synapse/tests/test_lib_stormlib_backup.py,sha256=3ZYE3swQ4A8aYJyVueFXzbekCdoKMC7jsHLoq0hTKGI,1644
|
|
@@ -379,7 +379,7 @@ synapse/tests/test_lib_stormlib_vault.py,sha256=pE_nDisXiyb-4Zm1hOrfsuEz3bjYwR8c
|
|
|
379
379
|
synapse/tests/test_lib_stormlib_xml.py,sha256=asF-Y1LVpLoqHRK71_LWy727XJvsTNpf8qRSK-CynMM,3659
|
|
380
380
|
synapse/tests/test_lib_stormlib_yaml.py,sha256=egTVXk8wW31V2msF__9WxP3THcqfysG1mYhc7hQG8rw,1358
|
|
381
381
|
synapse/tests/test_lib_stormsvc.py,sha256=J5-bmS_M3nkmJtmgUjyh7_vSwEzw_TxcMwe6q5ah1e8,43887
|
|
382
|
-
synapse/tests/test_lib_stormtypes.py,sha256=
|
|
382
|
+
synapse/tests/test_lib_stormtypes.py,sha256=GxtRFn3T9ORCkGoR19017xz2UMXW3OMcarvO4y0Qsao,315727
|
|
383
383
|
synapse/tests/test_lib_stormwhois.py,sha256=AWMUYEgZ5yqvDfPC_rM4evmhgfOA_Fv5aoTjmKmN1_0,4818
|
|
384
384
|
synapse/tests/test_lib_structlog.py,sha256=BxglFqOsJFPE2RsZ8dQyTBCEe1frQrHWWXmUBO2fPJs,3898
|
|
385
385
|
synapse/tests/test_lib_task.py,sha256=UQi14LdQ0rxDRCSy4TAxyq2OXDOXPQqnvp-nCK_aoBE,2454
|
|
@@ -618,8 +618,8 @@ synapse/vendor/xrpl/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
618
618
|
synapse/vendor/xrpl/tests/test_codec.py,sha256=Zwq6A5uZUK_FWDL3BA932c5b-rL3hnC6efobWHSLC4o,6651
|
|
619
619
|
synapse/vendor/xrpl/tests/test_main.py,sha256=kZQwWk7I6HrP-PMvLdsUUN4POvWD9I-iXDHOwdeF090,4299
|
|
620
620
|
synapse/vendor/xrpl/tests/test_main_test_cases.py,sha256=vTlUM4hJD2Hd2wCIdd9rfsvcMZZZQmNHWdCTTFeGz2Y,4221
|
|
621
|
-
synapse-2.
|
|
622
|
-
synapse-2.
|
|
623
|
-
synapse-2.
|
|
624
|
-
synapse-2.
|
|
625
|
-
synapse-2.
|
|
621
|
+
synapse-2.207.0.dist-info/licenses/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358
|
|
622
|
+
synapse-2.207.0.dist-info/METADATA,sha256=YYFd9KTFy_pucpIBRfB55i6SdiuhypLImQTpeqUQipw,4618
|
|
623
|
+
synapse-2.207.0.dist-info/WHEEL,sha256=ky1wqorHl2SfzZVBwTGUq24xVn07Gwf80XRasCPZT3o,93
|
|
624
|
+
synapse-2.207.0.dist-info/top_level.txt,sha256=v_1YsqjmoSCzCKs7oIhzTNmWtSYoORiBMv1TJkOhx8A,8
|
|
625
|
+
synapse-2.207.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|