blenzi
blenzi
Following the discussion on https://github.com/axa-group/Parsr/issues/510, I am testing Parsr also for small files and without (or with few) modules. With `README.pdf` provided in the samples (8 pages): ``` [2022-10-24T16:39:19] INFO...
Bonjour, je suis surpris par le calcul des émissions pour un vélo à assistance électrique: 2 gCO2eq / km pour la partie carburant. [EDF](https://www.edf.fr/groupe-edf/agir-en-entreprise-responsable/rapports-et-indicateurs/emissions-de-gaz-a-effet-de-serre) mentionne 30 gCO2 / kWh pour...
This PR adds the possibility to send the alert image together with a telegram message, if requested - add boolean field send_image to recipient table - add int field media_id...
This PR adds an alembic script to create notifications and recipients tables. The db in dev already contains those, while in prod it is not the case. So the migration...
This PR adds the possibility to set an event type, different than wildfire. This event assessment is currently done via `pyro-platform` but this information is only stored locally (in the...
To address #274 , this PR adds acknowledged_ts and acknowledged_by to events table
This PR adds limit and offset parameters with descriptions, to all routes that fetch lists from db (fix #243, fix #250). Also: - use crud.fetch_all in all the routes above,...
This PR adds a script and adapts the code to be able to backup db content and upload it to s3 bucket - add scripts/dump_db.sh - s3.py S3Bucket.upload_file: support for...
The routes that fetch objects from the db behave differently for admin and non-admin users. For admin, they are limited to 50 items while for non-admin users all the items...
Many pytest jobs are failing with ``` def test_post_request(): response = post_request("https://httpbin.org/post") > assert response.status_code == 200 E assert 504 == 200 E + where 504 = .status_code ``` Is...