-
Notifications
You must be signed in to change notification settings - Fork 2
FEAT: Integrate 2024 EAVS data and stabilize CLC cleaning pipeline #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
yashinlin
wants to merge
4
commits into
main
Choose a base branch
from
refactor/stable-cleaning-pipeline
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
4cba7ff
FEAT: Implement core 2024 EAVS cleaning logic and CLC variable mappings
yashinlin 864a9fe
FEAT: Enable multi-format data export and streamline pipeline execution
yashinlin 3d76709
CHORE: Add utility script for calculating survey SHA256 hashes
yashinlin fac7455
"FIX: Add openpyxl dependency to pyproject.toml for Excel file reading."
yashinlin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| import hashlib | ||
| from pathlib import Path | ||
| import sys | ||
|
|
||
| def calculate_sha256(filepath: Path): | ||
| """Calculates the SHA256 hash for a given file.""" | ||
| if not filepath.exists(): | ||
| print(f"Error: File not found at {filepath}") | ||
| return | ||
|
|
||
| sha256_hash = hashlib.sha256() | ||
| try: | ||
| with open(filepath, "rb") as f: | ||
| # Read and update hash string value in chunks of 4K | ||
| for byte_block in iter(lambda: f.read(4096), b""): | ||
| sha256_hash.update(byte_block) | ||
|
|
||
| calculated_hash = sha256_hash.hexdigest() | ||
| print("-" * 50) | ||
| print(f"File Path: {filepath}") | ||
| print(f"SHA256 Checksum: {calculated_hash}") | ||
| print("-" * 50) | ||
|
|
||
| except Exception as e: | ||
| print(f"An error occurred while reading the file: {e}") | ||
|
|
||
| if __name__ == "__main__": | ||
| if len(sys.argv) < 2: | ||
| target_path = Path("data") / "raw" / "2024" / "1.0" / "2024_EAVS_for_Public_Release_V1_xlsx.xlsx" | ||
| else: | ||
| # Allow passing the path as a command-line argument | ||
| target_path = Path(sys.argv[1]) | ||
|
|
||
| calculate_sha256(target_path) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a comment, I believe shasum usually comes with with most OSes.
Anyways, there are two files of
calculate_sh256.py.I think it's ok to leave it in here as a utility function in the
utilsfolder and delete this file instead.