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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pseek
3
- Version: 2.2.0
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 pseek
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
@@ -24,8 +24,8 @@ pip install pseek
24
24
 
25
25
  ```sh
26
26
  git clone https://github.com/ArianN8610/pysearch.git
27
- cd pseek
28
- pip install click==8.1.8
27
+ cd pysearch
28
+ pip install click==8.1.8 lark==1.2.2
29
29
  ```
30
30
 
31
31
  ## 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.0
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 pseek
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pseek"
7
- version = "2.2.0"
7
+ version = "2.2.1"
8
8
  description = "Pseek is a Python library to search files, folders, and text"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes