file_query_text 0.1.10__tar.gz → 0.1.11__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.
- {file_query_text-0.1.10 → file_query_text-0.1.11}/PKG-INFO +1 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text/__init__.py +1 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text/cli.py +1 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text/main.py +0 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/PKG-INFO +1 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/pyproject.toml +1 -1
- {file_query_text-0.1.10 → file_query_text-0.1.11}/README.md +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text/gitignore_parser.py +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text/grammar.py +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/SOURCES.txt +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/dependency_links.txt +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/entry_points.txt +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/requires.txt +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/top_level.txt +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/setup.cfg +0 -0
- {file_query_text-0.1.10 → file_query_text-0.1.11}/tests/test_main.py +0 -0
@@ -86,7 +86,7 @@ def main():
|
|
86
86
|
if args.debug:
|
87
87
|
# Print all attributes in debug mode
|
88
88
|
attrs = get_file_attributes(file_path)
|
89
|
-
print(f"{attrs['extension']:<15} {attrs['name']:<30} {attrs['size']:<10} {attrs['
|
89
|
+
print(f"{attrs['extension']:<15} {attrs['name']:<30} {attrs['size']:<10} {attrs['path']}")
|
90
90
|
else:
|
91
91
|
# Standard output
|
92
92
|
print(file_path)
|
@@ -193,7 +193,6 @@ def get_file_attributes(file_path):
|
|
193
193
|
"name": os.path.basename(file_path),
|
194
194
|
"size": os.path.getsize(file_path),
|
195
195
|
"path": rel_path, # Use relative path for consistency
|
196
|
-
"absolute_path": file_path, # Keep the absolute path as well
|
197
196
|
}
|
198
197
|
return attributes
|
199
198
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{file_query_text-0.1.10 → file_query_text-0.1.11}/file_query_text.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|