Skip to content

Commit 67ae000

Browse files
authored
add async to root init (#439)
1 parent 73f3d76 commit 67ae000

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

sentinelhub/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from ._version import __version__
66
from .api import (
7+
AsyncProcessRequest,
78
BatchCollection,
89
BatchRequest,
910
BatchRequestStatus,
@@ -24,6 +25,7 @@
2425
WcsRequest,
2526
WebFeatureService,
2627
WmsRequest,
28+
get_async_running_status,
2729
monitor_batch_analysis,
2830
monitor_batch_job,
2931
monitor_batch_statistical_analysis,

sentinelhub/api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from .catalog import SentinelHubCatalog
2020
from .fis import FisRequest
2121
from .ogc import WcsRequest, WmsRequest
22-
from .process import AsyncProcessRequest, SentinelHubRequest
22+
from .process import AsyncProcessRequest, SentinelHubRequest, get_async_running_status
2323
from .statistical import SentinelHubStatistical
2424
from .wfs import WebFeatureService

0 commit comments

Comments
 (0)