-
Notifications
You must be signed in to change notification settings - Fork 0
Merging google sheets logic #1 #3
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
ojas-uls-dev
wants to merge
45
commits into
master
Choose a base branch
from
sheets-logic
base: master
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.
+369
−100
Open
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
52e700d
adding google sheets option
ojas-uls-dev dc508c4
Updating .gitignore to exclude *.patch files.
bdgregg 08d639d
Enhanced parameter and output.
bdgregg 6f19fdb
Merge pull request #2 from ulsdevteam/sheets-logic-params
ojas-uls-dev 462e34f
add logger statements wherever print used #1
ojas-uls-dev 2415758
add doc comments and type hints. also put batch_path as explicit argu…
ojas-uls-dev 2a3d1b5
Update .gitignore to remove certain patterns
bdgregg 05a482c
Refactor path concatenation for batch directory creation
bdgregg 24142dc
Clean up code by removing commented debugging lines.
bdgregg 31f39fc
Test - Updated README.md
bdgregg 2df4291
Test - Updated README.md - undo changes
bdgregg d68be8f
Logging Cleanup & fixes. Created a main function. Moved parameter par…
bdgregg 9bd4a20
Updated README.md to includ info about --log-file.
bdgregg d80c81e
Updated README.md to see if we can add columns in it.
bdgregg 7420ebc
sheetutils documentation
ojas-uls-dev a49ae39
wrap sheet update with try
ojas-uls-dev a476f23
Fix remaining os.path.sep.join statements.
bdgregg f5b351a
Cleanup and simplification regarding manifest.xlsx and manifest.csv p…
bdgregg 9880f0c
pull dataframe checks into make_dir_from_df and update docs
ojas-uls-dev 5ab9e42
Added a comment for the main function.
bdgregg 7b3f9bb
More README.md adjustments around the tables.
bdgregg 3ae4ee2
More README.md adjustments around the tables.
bdgregg d1f2526
More README.md adjustments around the tables.
bdgregg 21f8038
More README.md adjustments around the tables.
bdgregg 29fb3e7
More README.md adjustments around the tables.
bdgregg 6e8eba4
More README.md adjustments around the tables.
bdgregg fd20fca
More README.md adjustments around the tables.
bdgregg 524add9
More README.md adjustments around the tables.
bdgregg 9a92b59
More README.md adjustments around the tables.
bdgregg 613aff2
More README.md adjustments around the tables.
bdgregg ee8e220
More README.md adjustments around the tables.
bdgregg 59f71bd
More README.md adjustments around the tables.
bdgregg 216ab09
More README.md adjustments around the tables.
bdgregg a5314a0
More README.md adjustments around the tables.
bdgregg d9712b3
Adjusting make_dirs_from_df function dataframe -> df.
bdgregg 9908c71
Adjusting the make-batch-dirs.conf-sample file.
bdgregg 153c900
Adding a config file section to the README.md.
bdgregg 65b046f
Adding a note about the default tab (sheet-name) used 'Sheet1' the RE…
bdgregg 7166345
Updated make_dirs_from_df and removed function xls_file_as_df due to …
bdgregg d2ca0f0
Added an additional logging line.
bdgregg 69fe161
change exit codes to 1 and replace print with logger
ojas-uls-dev fab7292
forgot to pull. merge contains commit for exit code and removing prin…
ojas-uls-dev fc4ae37
check for args.xls instead of manifest_path in copy_xls_to_batch
ojas-uls-dev b4259cd
remove unused array and check fail gracefully if file ops fail
ojas-uls-dev 4b8b9bd
if args xls_file does not exist, fail. also replace exit with sys.exit
ojas-uls-dev 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,5 @@ | |
| *.csv | ||
| *.log | ||
| *.json | ||
| *.new | ||
| ignore/ | ||
| __pycache__/ | ||
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
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
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.
I think we can add some error checking around if args.xls_file exists or not before trying to read the xlsx file.