-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
enhancementNew feature or requestNew feature or requestmodificationChange to an existing featureChange to an existing feature
Description
Currently, users need to access the tools like this:
from eis_toolkit.raster_processing.resampling import resample
It would be more convenient (and common in other libraries) to import like this:
from eis_toolkit.raster_processing import resample
This can be achieved by re-exporting the public functions in __init__.py files of each submodule directory (e.g. raster_processing). For example:
from .resampling import resample
It's also worth considering for the 1.0.0 release if the files with source code should be prefixed with _ to indicate they are not meant to be imported.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestmodificationChange to an existing featureChange to an existing feature