-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
58 changed files
with
133 additions
and
130 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
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
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,12 +1,12 @@ | ||
[workspace] | ||
members = ["object-store-py", "pyo3-object_store"] | ||
members = ["obstore", "pyo3-object_store"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Kyle Barron <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://developmentseed.org/object-store-py" | ||
repository = "https://github.com/developmentseed/object-store-py" | ||
homepage = "https://developmentseed.org/obstore" | ||
repository = "https://github.com/developmentseed/obstore" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["python"] | ||
categories = [] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copy | ||
|
||
::: object_store_py.copy | ||
::: object_store_py.copy_async | ||
::: obstore.copy | ||
::: obstore.copy_async |
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,2 +1,2 @@ | ||
::: object_store_py.delete | ||
::: object_store_py.delete_async | ||
::: obstore.delete | ||
::: obstore.delete_async |
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,11 +1,11 @@ | ||
# Get | ||
|
||
::: object_store_py.get | ||
::: object_store_py.get_async | ||
::: object_store_py.get_range | ||
::: object_store_py.get_range_async | ||
::: object_store_py.get_ranges | ||
::: object_store_py.get_ranges_async | ||
::: object_store_py.GetOptions | ||
::: object_store_py.GetResult | ||
::: object_store_py.Buffer | ||
::: obstore.get | ||
::: obstore.get_async | ||
::: obstore.get_range | ||
::: obstore.get_range_async | ||
::: obstore.get_ranges | ||
::: obstore.get_ranges_async | ||
::: obstore.GetOptions | ||
::: obstore.GetResult | ||
::: obstore.Buffer |
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 @@ | ||
# Head | ||
|
||
::: object_store_py.head | ||
::: object_store_py.head_async | ||
::: obstore.head | ||
::: obstore.head_async |
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,8 +1,8 @@ | ||
# List | ||
|
||
::: object_store_py.list | ||
::: object_store_py.list_with_delimiter | ||
::: object_store_py.list_with_delimiter_async | ||
::: object_store_py.ObjectMeta | ||
::: object_store_py.ListResult | ||
::: object_store_py.ListStream | ||
::: obstore.list | ||
::: obstore.list_with_delimiter | ||
::: obstore.list_with_delimiter_async | ||
::: obstore.ObjectMeta | ||
::: obstore.ListResult | ||
::: obstore.ListStream |
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,5 +1,5 @@ | ||
# Put | ||
|
||
::: object_store_py.put | ||
::: object_store_py.put_async | ||
::: object_store_py.PutResult | ||
::: obstore.put | ||
::: obstore.put_async | ||
::: obstore.PutResult |
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 @@ | ||
# Rename | ||
|
||
::: object_store_py.rename | ||
::: object_store_py.rename_async | ||
::: obstore.rename | ||
::: obstore.rename_async |
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,6 +1,6 @@ | ||
# Sign | ||
|
||
::: object_store_py.sign | ||
::: object_store_py.sign_async | ||
::: object_store_py.SignCapableStore | ||
::: object_store_py.HTTP_METHOD | ||
::: obstore.sign | ||
::: obstore.sign_async | ||
::: obstore.SignCapableStore | ||
::: obstore.HTTP_METHOD |
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 @@ | ||
# AWS S3 | ||
|
||
::: object_store_py.store.S3Store | ||
::: object_store_py.store.S3ConfigKey | ||
::: obstore.store.S3Store | ||
::: obstore.store.S3ConfigKey |
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 @@ | ||
# Microsoft Azure | ||
|
||
::: object_store_py.store.AzureStore | ||
::: object_store_py.store.AzureConfigKey | ||
::: obstore.store.AzureStore | ||
::: obstore.store.AzureConfigKey |
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,5 +1,5 @@ | ||
# Configuration | ||
|
||
::: object_store_py.store.ClientConfigKey | ||
::: object_store_py.store.BackoffConfig | ||
::: object_store_py.store.RetryConfig | ||
::: obstore.store.ClientConfigKey | ||
::: obstore.store.BackoffConfig | ||
::: obstore.store.RetryConfig |
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 @@ | ||
# Google Cloud Storage | ||
|
||
::: object_store_py.store.GCSStore | ||
::: object_store_py.store.GCSConfigKey | ||
::: obstore.store.GCSStore | ||
::: obstore.store.GCSConfigKey |
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,3 +1,3 @@ | ||
# HTTP | ||
|
||
::: object_store_py.store.HTTPStore | ||
::: obstore.store.HTTPStore |
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,3 +1,3 @@ | ||
# ObjectStore | ||
|
||
::: object_store_py.store.ObjectStore | ||
::: obstore.store.ObjectStore |
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,3 +1,3 @@ | ||
# Local | ||
|
||
::: object_store_py.store.LocalStore | ||
::: obstore.store.LocalStore |
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,3 +1,3 @@ | ||
# Memory | ||
|
||
::: object_store_py.store.MemoryStore | ||
::: obstore.store.MemoryStore |
Oops, something went wrong.