File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- tldextract == 5.1.2
1+ tldextract == 5.3.1
Original file line number Diff line number Diff line change 44from multiprocessing import Pool , cpu_count
55
66# prints the version message
7- version = "v0.0.2 "
7+ version = "v0.0.3 "
88
99# Initialize single TLDExtract instance at module level for reuse
10- _extractor = tldextract .TLDExtract (cache_file = False )
10+ _extractor = tldextract .TLDExtract (cache_dir = None )
1111
1212def PrintVersion ():
1313 print (f"Current tldinfo version { version } " )
@@ -56,7 +56,7 @@ def _get_process_extractor():
5656 """Get or initialize process-local extractor for multiprocessing"""
5757 global _process_extractor
5858 if _process_extractor is None :
59- _process_extractor = tldextract .TLDExtract (cache_file = False )
59+ _process_extractor = tldextract .TLDExtract (cache_dir = None )
6060 return _process_extractor
6161
6262def process_url_worker (args_tuple ):
You can’t perform that action at this time.
0 commit comments