softhauzpy 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/PKG-INFO +1 -1
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/setup.py +1 -1
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy/main.py +1 -1
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy.egg-info/PKG-INFO +1 -1
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/README.md +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/setup.cfg +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy/__init__.py +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy.egg-info/SOURCES.txt +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy.egg-info/dependency_links.txt +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy.egg-info/requires.txt +0 -0
- {softhauzpy-0.0.3 → softhauzpy-0.0.4}/softhauzpy.egg-info/top_level.txt +0 -0
|
@@ -193,7 +193,7 @@ def get_search_results_list(page_list=[], keywords='') -> list:
|
|
|
193
193
|
creation_date = page[4] or ''
|
|
194
194
|
modified_date = page[5] or ''
|
|
195
195
|
|
|
196
|
-
if keywords in extract_pure_text(url, title, author, description, creation_date, modified_date)["content"]:
|
|
196
|
+
if keywords in extract_pure_text(url, title=title, author=author, description=description, creation_date=creation_date, modified_date=modified_date)["content"]:
|
|
197
197
|
results.append((url, title, author, description, creation_date, modified_date))
|
|
198
198
|
|
|
199
199
|
return results
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|