-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add gsheet #163
Open
aschroed
wants to merge
17
commits into
master
Choose a base branch
from
add_gsheet
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.
Open
Add gsheet #163
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
70f7cb8
adding gsheet support
aschroed 849a405
steps to auth for gsheet
aschroed 094af51
Merge branch 'master' into add_gsheet
aschroed d0fe10d
Merge branch 'master' into add_gsheet
aschroed 29f4b2d
finally figured out how google auth stuff can work
aschroed 6feb98a
Merge branch 'master' into add_gsheet
aschroed 7a65c9a
fixing tests; considering removing ftp support
aschroed 1da1ff3
removed all support for ftp download and upload; added tests
aschroed eea16bc
added gspread dependency; updated version
aschroed 0b1737e
removed unused imports, linting updates, added another test
aschroed 2cf795a
made some updates based on Will's feedback - breaking out constants; …
aschroed 5e7de2d
updating tests and connection functions
aschroed 25e3f89
added gfi tests
aschroed b41dd74
fixing some tests
aschroed 98ce013
changed some constant names
aschroed 29bce7f
added tests for google_authenticate and fixed a bug they spotted
aschroed 06c3d70
couple of flake8 fixes
aschroed 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 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "Submit4DN" | ||
version = "3.1.1" | ||
version = "3.2.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You might consider bumping major version since you are removing FTP support. |
||
description = "Utility package for submitting data to the 4DN Data Portal" | ||
authors = ["4DN-DCIC Team <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -16,6 +16,7 @@ python = ">=3.7.0,<3.10" | |
python-magic = ">=0.4.12" | ||
attrs = ">=21.4" | ||
openpyxl = "^3.0.9" | ||
gspread = "^5.6.0" | ||
dcicutils = ">=4.0" | ||
# awscli is not directly imported but is required for aws cp operation | ||
awscli = "^1.22.88" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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.
If there is nothing worth tracking in
.config
I would gitignore the whole thing just to be safe... You also may want to provide another means to specify these credentials since folks who install from PyPi won't have this path.