aboutsummaryrefslogtreecommitdiffhomepage
path: root/sec_certs/cert_processing.py
Commit message (Collapse)AuthorAgeFilesLines
* delete old APIAdam Janovsky2021-05-131-31/+0
|
* Improves parallel processing functionAdam Janovsky2021-02-191-2/+5
| | | | - Adds option to unpack arguments
* Rethought way of processing certificatesAdam Janovsky2020-11-281-2/+2
| | | | | | - Every certificate now implements a static method for its processing - These are called in parallel - There's some code duplication at the moment, stuff can be simplified.
* type hinting checksAdam Janovsky2020-11-271-2/+4
|
* move merge_certs() to CCDatasetAdam Janovsky2020-11-261-2/+0
|
* Finalize proposal of cert download and convertAdam Janovsky2020-11-261-0/+28
The proposed method of processing certificates is breadth-first. By that I mean that single task is done for all certificates, then next task is evaluated. All tasks should be implemented as static methods and are to be paralelized by calling `sec-certs/cert_processing.py`. Currently, a generic method `process_paralel()` sits there that is capable of pretty much arbitrary parallel processing (both using threads and processes). Any methods to-be called by this method must require unpacked arguments on the input.