effectual 0.7.1__tar.gz → 0.7.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {effectual-0.7.1 → effectual-0.7.2}/PKG-INFO +1 -1
- {effectual-0.7.1 → effectual-0.7.2}/pyproject.toml +1 -1
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/build.py +15 -2
- {effectual-0.7.1 → effectual-0.7.2}/uv.lock +1 -1
- {effectual-0.7.1 → effectual-0.7.2}/.gitignore +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/.python-version +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/LICENSE +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/README.md +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/__init__.py +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/colors.py +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/config.py +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/developer.py +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/src/effectual/transformations.py +0 -0
- {effectual-0.7.1 → effectual-0.7.2}/taskfile.yml +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
import hashlib
|
1
2
|
import os
|
2
3
|
import shutil
|
3
4
|
import zipfile
|
@@ -5,8 +6,6 @@ from pathlib import Path
|
|
5
6
|
from time import perf_counter
|
6
7
|
from typing import Any
|
7
8
|
|
8
|
-
from watch_lite import getHash
|
9
|
-
|
10
9
|
from .colors import completeColor, fileColor, folderColor, tagColor
|
11
10
|
from .config import dumpHashes, loadConfig, loadToml
|
12
11
|
from .transformations import minifyFile, minifyToString
|
@@ -99,6 +98,20 @@ def dependencies() -> None:
|
|
99
98
|
)
|
100
99
|
|
101
100
|
|
101
|
+
def getHash(filePath: Path) -> str:
|
102
|
+
"""Gets the hash of a single file
|
103
|
+
|
104
|
+
Args:
|
105
|
+
filePath (Path): Path to the file
|
106
|
+
|
107
|
+
Returns:
|
108
|
+
str: String of the hash
|
109
|
+
"""
|
110
|
+
with open(filePath, "rb") as file:
|
111
|
+
fileHash = hashlib.sha1(file.read()).hexdigest()
|
112
|
+
return fileHash
|
113
|
+
|
114
|
+
|
102
115
|
def main() -> None:
|
103
116
|
"""Entrypoint
|
104
117
|
|
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
|