Suggestions: - At line #43 : https://github.com/armbues/ioc_parser/blob/master/iocp.py#L43 - Replace with: ``` python try: from StringIO import StringIO except ImportError: from io import StringIO ``` - pdfminer doesn't support python3, so I changed default library to 'pypdf2' at line #84: - https://github.com/armbues/ioc_parser/blob/master/iocp.py#L84 ``` python def __init__(self, patterns_ini=None, ..., library='pypdf2', ...): ```
Suggestions: