Matthew
Matthew
New to APRS and trying to decipher the format, but the following is throwing exceptions (picked up via `r/33/-97/200 t/p`: ``` def test_weird_frame(self): frame = 'DL0II>APRS,TCPIP*,qAC,T2MAZURY:=5115.19N/00658.49E&www.r09.de APRS iGate' aprs_frame =...
We may be generating a SBOM for a forked library -- given such we would want the ability to declare our provenance (pedigree? i'm not really sure what the difference...
* **What are you trying to do?** Use PURLs instead of UUID's in cyclonedx output * **What feature or behavior is this required for?** See above * **How could we...
Why does this default to a remote nix store? Shouldn't one check our local `/nix/store` and copy from there first? Would save a lot of time/bandwidth seemingly.
e.g. ```python secret = b'it would go here' request = requests.Request( 'POST', 'https://theinstance.service-now.com/api/now/table/incident', json={'short_description':'test'} ) prepped = request.prepare() signature = hmac.new(secret, prepped.body, digestmod=hashlib.sha256) encoded_sig = base64.standard_b64encode(signature.digest()).decode() prepped.headers['x-sn-hmac-signature-256'] = f"keyId=test_secret,signature={encoded_sig}" print(prepped.headers)...
e.g. the api/record query expects `list_fieldCONTAINSv1,v2` but the sysparm_query for list view expects `list_fieldLIKEv1,v2` -- so the function to generate the link should convert accordingly?
doing a `gr.get(sys_id)` does not show any errors when we have a RoleException doing it via `gr.query()` however does -- need this to be more consistent e.g. ``` test =...
We have update_multiple and delete_multiple which take advantage of the batch api -- no reason to not do the same with insert. I imagine something like: ``` gr = client.GlideRecord('some_table')...
We can use the API to query, then execute UI Actions. The following is the current method to execute: ``` params = dict(sysparm_table='x_snc_some_table', sysparm_sys_id=sys_id) r = self.client.session.post(f"{self.client.instance}/api/now/ui/ui_action/{ui_action_sys_id}", params=params, json={}) ```...
Support the headers ``` X-WantSessionDebugMessages: true X-WantSessionNotificationMessages: true ``` For: ``` "session":{"notifications":[],"debug_logs":[]} ``` These, however, require actual sessions