FAN-GOD
FAN-GOD
This problem occasionally occurs when closing a Kafka link, Is there a mistake?
同需求,几亿数据删好几天
I also have a problem. A line of file: ` url,https://groups.google.com/g/vfc9gs,Malicious Google Groups discussion ` but got: ` urls=["https://groups.google.com/g/vfc9gs,Malicious"] `
Fix pdf use this cmds. ``` gs -o b.pdf -sDEVICE=pdfwrite a.pdf ```
I think speed is more important than memory. Is it possible to try to slice the text for multi-process parsing?
``` import pandas as pd pd.options.display.max_colwidth from pandarallel import pandarallel pandarallel.initialize(nb_workers=4, progress_bar=True) def find_keys(text: str, filters=False, **kwargs): key, keys = find_iocs(text, filters, **kwargs) return keys def split_text(text): lines = text.split("\n")...
``` def split_text(text): lines = text.split("\n") new_text_list = [] if lines < 300: num = 100 window = 256 text_length = 100 * 100 split_source = list(range(0, len(text), text_length)) split_delta...