pawr

Results 2 comments of pawr

For testing purposes (Node.js), I was able to use the following in the client script while using self-signed certificate approach: `process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";`

By adding a default converter in the `db.py`, based on initial example and linked recipes, all tests pass in both venv3.11 venv3.12 using the following: ``` def convert_timestamp(val): return datetime.datetime.fromisoformat(val.decode())...