pseek 2.2.0__tar.gz → 2.2.1__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.
- {pseek-2.2.0 → pseek-2.2.1}/PKG-INFO +3 -3
- {pseek-2.2.0 → pseek-2.2.1}/README.md +2 -2
- {pseek-2.2.0 → pseek-2.2.1}/pseek/searcher.py +1 -1
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/PKG-INFO +3 -3
- {pseek-2.2.0 → pseek-2.2.1}/pyproject.toml +1 -1
- {pseek-2.2.0 → pseek-2.2.1}/LICENSE +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek/__init__.py +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek/cli.py +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek/parser.py +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek/utils.py +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/SOURCES.txt +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/dependency_links.txt +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/entry_points.txt +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/requires.txt +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/pseek.egg-info/top_level.txt +0 -0
- {pseek-2.2.0 → pseek-2.2.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pseek
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: Pseek is a Python library to search files, folders, and text
|
|
5
5
|
Author-email: Arian <ariannasiri86@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -38,8 +38,8 @@ pip install pseek
|
|
|
38
38
|
|
|
39
39
|
```sh
|
|
40
40
|
git clone https://github.com/ArianN8610/pysearch.git
|
|
41
|
-
cd
|
|
42
|
-
pip install click==8.1.8
|
|
41
|
+
cd pysearch
|
|
42
|
+
pip install click==8.1.8 lark==1.2.2
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
@@ -170,7 +170,7 @@ class Search:
|
|
|
170
170
|
|
|
171
171
|
# Filter files before processing
|
|
172
172
|
files_to_process = {
|
|
173
|
-
p for p in self.base_path.rglob('*') if not self.should_skip(p, 'content')
|
|
173
|
+
p for p in self.base_path.rglob('*') if not self.should_skip(p.resolve(), 'content')
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
with ThreadPoolExecutor(max_workers=8) as executor:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pseek
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: Pseek is a Python library to search files, folders, and text
|
|
5
5
|
Author-email: Arian <ariannasiri86@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -38,8 +38,8 @@ pip install pseek
|
|
|
38
38
|
|
|
39
39
|
```sh
|
|
40
40
|
git clone https://github.com/ArianN8610/pysearch.git
|
|
41
|
-
cd
|
|
42
|
-
pip install click==8.1.8
|
|
41
|
+
cd pysearch
|
|
42
|
+
pip install click==8.1.8 lark==1.2.2
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|