-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor `batch_upload` function * add `read_json` to upload function to read user defined params from json file * docstrings fulfilled * add new error messages * add test for batch upload with custom param file per package name * `read_json` function in `util.py` * comment batch test to prevent namespace squatting * fix batch upload syntax * CHANGELOG.md updated * remove unused parameters * error texts updated * remove ".json" format check * "\n" added
- Loading branch information
Showing
7 changed files
with
88 additions
and
16 deletions.
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"description": "[config] This name has been reserved using Reserver", | ||
"author": "[config] Development Team", | ||
"author_email": "[email protected]", | ||
"url": "https://configurl.com", | ||
"download_url": "https://configdownload_url.com", | ||
"source": "https://configgithub.com/source", | ||
"license": "[config] MIT" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"description": "[config2] This name has been reserved using Reserver", | ||
"author": "[config2] Development Team", | ||
"author_email": "[email protected]", | ||
"url": "https://config2url.com", | ||
"download_url": "https://config2download_url.com", | ||
"source": "https://config2github.com/source", | ||
"license": "[config2] MIT" | ||
} |
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