Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Development #60

Merged
merged 58 commits into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
30eb036
Make login and logout be run by click
BartoszCki Apr 18, 2019
25ea835
Refactor version command
BartoszCki Apr 19, 2019
53a7465
Merge branch 'master' of github.com:Paperspace/paperspace-python into…
BartoszCki Apr 24, 2019
b2717c7
Add jobs support starting with job delete
BartoszCki Apr 24, 2019
14db572
dummy command
kossak Apr 25, 2019
f68ae5e
Add jobs stop command
BartoszCki Apr 25, 2019
bd242d6
Move common objects to avoid circular imports
BartoszCki Apr 25, 2019
19a6193
Move common objects to avoid circular imports
BartoszCki Apr 25, 2019
b0616cf
Add 'projects list' command
BartoszCki Apr 25, 2019
ef80f07
Merge branch 'development' of github.com:Paperspace/paperspace-python…
BartoszCki Apr 25, 2019
eb4caa0
Add 'projects list' command
BartoszCki Apr 25, 2019
0adf2a9
Add 'Created' column to projects list command
BartoszCki Apr 25, 2019
d877bec
Merge branch 'development' of github.com:Paperspace/paperspace-python…
BartoszCki Apr 26, 2019
ea6d332
Add jobs list command
BartoszCki Apr 26, 2019
549ff1b
Remove unused Number type
BartoszCki Apr 26, 2019
3fce0c3
Merge branch 'PS-9869-list-experiments-jobs-etc' into development
BartoszCki Apr 26, 2019
52999c0
Add filtering to 'jobs list' command
BartoszCki Apr 26, 2019
8901a91
Feature PS-9868:
MudlaffP Apr 29, 2019
5830c1a
Merge branch 'development' of github.com:Paperspace/paperspace-python…
MudlaffP Apr 29, 2019
35c6b83
Minor changes to experiments list command
BartoszCki Apr 26, 2019
667452e
Add 'models list' command with filtering by experimentId
BartoszCki Apr 26, 2019
e4e69a6
Add filtering models by project ID and fix message when wrong api key…
BartoszCki Apr 29, 2019
4480440
Add filtering options to 'deployments list' command
BartoszCki Apr 29, 2019
1ea7533
Fixed variable names
BartoszCki Apr 29, 2019
575ddae
Merge branch 'master' of github.com:Paperspace/paperspace-python into…
BartoszCki Apr 29, 2019
f80f436
workspace uploading
kossak Apr 29, 2019
dbcc3db
Merge remote-tracking branch 'origin/development' into PS-9877-upload…
kossak Apr 29, 2019
7bba905
Feature PS-9868:
MudlaffP Apr 30, 2019
47868f6
Add git-like 'did you mean ...'
BartoszCki Apr 29, 2019
e640ebe
Add colors to help and log errors in red
BartoszCki Apr 30, 2019
04295c1
relative path added to zip,
kossak May 1, 2019
75644bc
Merge remote-tracking branch 'origin/development' into PS-9877-upload…
kossak May 1, 2019
17dea50
refactored - workspace handling extracted to module
kossak May 1, 2019
20ce0af
create_job init
kossak May 1, 2019
0a0a6ee
creating job + bug fixes
kossak May 1, 2019
ce42376
Feature PS-9868:
MudlaffP May 5, 2019
cab84b8
Merge branch 'development' of github.com:Paperspace/paperspace-python…
MudlaffP May 5, 2019
5477da0
Feature PS-9868:
MudlaffP May 5, 2019
ba5ba73
Feature PS-9868:
MudlaffP May 5, 2019
deb58e8
Feature PS-9868:
MudlaffP May 6, 2019
3932706
tmp
kossak May 6, 2019
b96614e
Feature PS-9868:
MudlaffP May 6, 2019
c7f9f8e
Feature PS-9868:
MudlaffP May 6, 2019
cc3e745
Feature PS-9868:
MudlaffP May 6, 2019
e083ee2
Merge branch 'PS-9868' into development
MudlaffP May 6, 2019
f8370f2
minor tweaks
kossak May 6, 2019
bf86110
Merge remote-tracking branch 'origin/development' into PS-9877-upload…
kossak May 6, 2019
1c8e5dc
Fix coloring help messages and suggesting command names to all groups
BartoszCki May 6, 2019
5a9d764
unifying variable names (in other words: bugfix)
kossak May 7, 2019
ab98094
more clear exception handling + relative import tweak
kossak May 7, 2019
2ebac6e
Merge remote-tracking branch 'origin/development' into PS-9877-upload…
kossak May 7, 2019
8cd8905
Minor changes to experiments options
BartoszCki May 7, 2019
e34a8ad
Merge remote-tracking branch 'origin/development' into PS-9877-upload…
kossak May 7, 2019
db17d63
tests fixed and expanded
kossak May 7, 2019
4995134
redundant required params removed
kossak May 7, 2019
8252626
Fix handling error response in experiments list (#77)
BartoszCki May 7, 2019
4266224
Merge branch 'development' into PS-9877-upload-workspace
BartoszCki May 7, 2019
fe5d4a8
Merge branch 'PS-9877-upload-workspace' into development
BartoszCki May 7, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
clean-tests:
rm -rf .tox paperspace.egg-info

run-tests: clean-tests
tox
7 changes: 7 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,24 @@ verify_ssl = true
[packages]
e1839a8 = {path = ".",editable = true}
requests = {extras = ["security"]}
requests-toolbelt = "*"
progressbar2 = "*"
cryptography = {extras = ["security"]}
"boto3" = "*"
botocore = "*"
six = "*"
gradient-statsd = "*"
click = "*"
terminaltables = "*"
click-didyoumean = "*"
click-help-colors = "*"
colorama = "*"


[dev-packages]
twine = "*"
pypandoc = "*"
pytest = "*"
mock = "*"
coverage = "*"
tox = "*"
198 changes: 122 additions & 76 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading