Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

geeup

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geeup - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
geeup.egg-info/PKG-INFO
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"

@@ -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(

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

@@ -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(),