geeup
Advanced tools
| Metadata-Version: 2.1 | ||
| Name: geeup | ||
| Version: 1.0.0 | ||
| Version: 1.0.1 | ||
| Summary: Simple Client for Earth Engine Uploads | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/samapriya/geeup |
@@ -5,2 +5,2 @@ # -*- coding: utf-8 -*- | ||
| __email__ = "samapriya.roy@gmail.com" | ||
| __version__ = "1.0.0" | ||
| __version__ = "1.0.1" |
+6
-6
@@ -463,3 +463,3 @@ __copyright__ = """ | ||
| print(f"Tasks Running: {st.count('RUNNING')}") | ||
| print(f"Tasks Pending: {st.count('PENDING')}") | ||
| print(f"Tasks Pending: {st.count('READY')}") | ||
| print(f"Tasks Completed: {st.count('COMPLETED')+st.count('SUCCEEDED')}") | ||
@@ -477,3 +477,3 @@ print(f"Tasks Failed: {st.count('FAILED')}") | ||
| for task in ee.data.getTaskList() | ||
| if task["state"] == "RUNNING" or task["state"] == "PENDING" | ||
| if task["state"] == "RUNNING" or task["state"] == "READY" | ||
| ] | ||
@@ -520,3 +520,3 @@ if len(all_tasks) > 0: | ||
| ready_tasks = [ | ||
| task for task in ee.data.getTaskList() if task["state"] == "PENDING" | ||
| task for task in ee.data.getTaskList() if task["state"] == "READY" | ||
| ] | ||
@@ -546,3 +546,3 @@ if len(ready_tasks) > 0: | ||
| for task in task_list: | ||
| if task["state"] == "RUNNING" or task["state"] == "PENDING": | ||
| if task["state"] == "RUNNING" or task["state"] == "READY": | ||
| ee.data.cancelTask(task["id"]) | ||
@@ -784,3 +784,3 @@ print( | ||
| "tasks", | ||
| help="Queries current task status [completed,running,pending,failed,cancelled]", | ||
| help="Queries current task status [completed,running,ready,failed,cancelled]", | ||
| ) | ||
@@ -790,3 +790,3 @@ optional_named = parser_tasks.add_argument_group("Optional named arguments") | ||
| "--state", | ||
| help="Query by state type COMPLETED|PENDING|RUNNING|FAILED", | ||
| help="Query by state type COMPLETED|READY|RUNNING|FAILED", | ||
| ) | ||
@@ -793,0 +793,0 @@ optional_named.add_argument( |
+1
-1
| Metadata-Version: 2.1 | ||
| Name: geeup | ||
| Version: 1.0.0 | ||
| Version: 1.0.1 | ||
| Summary: Simple Client for Earth Engine Uploads | ||
@@ -5,0 +5,0 @@ Home-page: https://github.com/samapriya/geeup |
+1
-1
@@ -12,3 +12,3 @@ import os | ||
| name="geeup", | ||
| version="1.0.0", | ||
| version="1.0.1", | ||
| python_requires=">=3.6", | ||
@@ -15,0 +15,0 @@ packages=find_packages(), |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
77237
-0.02%