-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from supervisely-ecosystem/download-async
Improved Project Downloading
- Loading branch information
Showing
6 changed files
with
68 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Current File", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "src/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": false, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}", | ||
"LOG_LEVEL": "DEBUG", | ||
} | ||
} | ||
] | ||
} | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Current File", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "src/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": false, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}", | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
} | ||
] | ||
} |
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,23 +1,22 @@ | ||
{ | ||
"python.defaultInterpreterPath": ".venv/bin/python", | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
".venv": true, | ||
}, | ||
"black-formatter.args": [ | ||
"--line-length", | ||
"100" | ||
], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
} | ||
"python.defaultInterpreterPath": ".venv/bin/python", | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
".venv": true | ||
}, | ||
"black-formatter.args": ["--line-length", "100"], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.insertSpaces": false, | ||
"editor.tabSize": 4 | ||
} | ||
} |
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,24 +1,24 @@ | ||
{ | ||
"name": "Export videos project in Supervisely format", | ||
"type": "app", | ||
"categories": ["videos", "export"], | ||
"description": "Export videos project and prepares downloadable tar archive", | ||
"docker_image": "supervisely/import-export:6.73.158", | ||
"instance_version": "6.10.0", | ||
"main_script": "src/main.py", | ||
"modal_template": "src/modal.html", | ||
"modal_template_state": { | ||
"items": "True" | ||
}, | ||
"task_location": "workspace_tasks", | ||
"isolate": true, | ||
"headless": true, | ||
"icon": "https://user-images.githubusercontent.com/48913536/175979192-3b62a77c-15ac-4970-8767-e75c5864dd7d.png", | ||
"icon_cover": true, | ||
"icon_background": "#FFFFFF", | ||
"context_menu": { | ||
"target": ["videos_project", "videos_dataset"], | ||
"context_root": "Download as" | ||
}, | ||
"poster": "https://user-images.githubusercontent.com/48245050/182545646-8af0b01f-d196-457f-a506-1cd2e0497f04.png" | ||
"name": "Export videos project in Supervisely format", | ||
"type": "app", | ||
"categories": ["videos", "export"], | ||
"description": "Export videos project and prepares downloadable tar archive", | ||
"docker_image": "supervisely/import-export:6.73.259", | ||
"instance_version": "6.12.12", | ||
"main_script": "src/main.py", | ||
"modal_template": "src/modal.html", | ||
"modal_template_state": { | ||
"items": "True" | ||
}, | ||
"task_location": "workspace_tasks", | ||
"isolate": true, | ||
"headless": true, | ||
"icon": "https://user-images.githubusercontent.com/48913536/175979192-3b62a77c-15ac-4970-8767-e75c5864dd7d.png", | ||
"icon_cover": true, | ||
"icon_background": "#FFFFFF", | ||
"context_menu": { | ||
"target": ["videos_project", "videos_dataset"], | ||
"context_root": "Download as" | ||
}, | ||
"poster": "https://user-images.githubusercontent.com/48245050/182545646-8af0b01f-d196-457f-a506-1cd2e0497f04.png" | ||
} |
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,4 +1,4 @@ | ||
supervisely==6.73.158 | ||
supervisely==6.73.259 | ||
|
||
# formatter | ||
black | ||
|
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