Skip to content

Commit

Permalink
Squashed commit of the following
Browse files Browse the repository at this point in the history
commit c8db8909 
Author: GregM <[email protected]> 
Date: Fri May 19 2023 15:07:31 GMT-0400 (Eastern Daylight Time) 

    version bump

commit 294b08b7 
Author: gregmagdits <[email protected]> 
Date: Fri May 19 2023 10:59:02 GMT-0400 (Eastern Daylight Time) 

    updated timeout and print


commit 7c3207a9 
Author: gregmagdits <[email protected]> 
Date: Thu May 18 2023 16:30:07 GMT-0400 (Eastern Daylight Time) 

    added pandas as dependency


commit f06b9ddd 
Author: gregmagdits <[email protected]> 
Date: Thu May 18 2023 10:53:33 GMT-0400 (Eastern Daylight Time) 

    fixed bug where completed-ids was always returning empty list


commit d5e01f8f 
Author: gregmagdits <[email protected]> 
Date: Thu May 18 2023 10:29:20 GMT-0400 (Eastern Daylight Time) 

    fixed 'verify' functionality. Fixed bug with discrepancy of download file count


commit 1baa37e8 
Author: gregmagdits <[email protected]> 
Date: Thu May 18 2023 05:43:40 GMT-0400 (Eastern Daylight Time) 

    added logic to create the metadata file if it doesnt already exist


commit 6e875605 
Author: gregmagdits <[email protected]> 
Date: Thu May 18 2023 04:41:09 GMT-0400 (Eastern Daylight Time) 

    Merge branch 'hd/398607' into poc/no-more-query-package-file

# Conflicts:
#	NDATools/__init__.py


commit 46022586 
Author: gregmagdits <[email protected]> 
Date: Wed May 17 2023 15:22:46 GMT-0400 (Eastern Daylight Time) 

    code cleanup


commit e266df5e 
Author: gregmagdits <[email protected]> 
Date: Tue May 16 2023 14:12:21 GMT-0400 (Eastern Daylight Time) 

    added retry on 50x error


commit de69c636 
Author: gregmagdits <[email protected]> 
Date: Wed May 17 2023 14:52:54 GMT-0400 (Eastern Daylight Time) 

    download appears to be working-ish
  • Loading branch information
GregM committed May 19, 2023
1 parent b877e0a commit aa89ec2
Show file tree
Hide file tree
Showing 6 changed files with 216 additions and 217 deletions.
2 changes: 2 additions & 0 deletions NDATools/Configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def __init__(self, settings_file, username=None, access_key=None, secret_key=Non
self.submission_package_api = self.config.get("Endpoints", "submission_package")
self.submission_api = self.config.get("Endpoints", "submission")
self.validationtool_api = self.config.get("Endpoints", "validationtool")
self.package_creation_api = self.config.get("Endpoints", "package_creation")
self.package_api = self.config.get("Endpoints", "package")
self.datadictionary_api = self.config.get("Endpoints", "datadictionary")
self.user_api = self.config.get("Endpoints", "user")
Expand Down Expand Up @@ -137,6 +138,7 @@ def make_config(self):
copy_config.set("Endpoints", "submission", self.submission_api)
copy_config.set("Endpoints", "validationtool", self.validationtool_api)
copy_config.set("Endpoints", "datadictionary", self.datadictionary_api)
copy_config.set("Endpoints", "package_creation", self.package_creation_api)

copy_config.add_section("User")
copy_config.set("User", "username", self.username)
Expand Down
Loading

0 comments on commit aa89ec2

Please sign in to comment.