-
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.
refactor: rename project from EarthDataStore to EarthDaily and update…
… references throughout the codebase
- Loading branch information
1 parent
25bfd66
commit 4b663a4
Showing
45 changed files
with
61 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,5 +161,5 @@ cython_debug/ | |
# asv environments | ||
.asv | ||
|
||
# EarthDataStore | ||
# EarthDaily | ||
examples/ |
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 @@ | ||
# Contributing to EarthDataStore | ||
# Contributing to EarthDaily Python Client | ||
|
||
This document will guide you through the steps required to set up your development environment, develop, test, and contribute to the project. | ||
|
||
|
@@ -15,7 +15,7 @@ Ensure you have the following installed on your machine: | |
1. **Clone the repository**: | ||
```bash | ||
git clone [email protected]:earthdaily/earthdaily-python-client.git | ||
cd earthdatastore | ||
cd earthdaily-python-client | ||
``` | ||
|
||
2. **Install dependencies using Poetry**: | ||
|
@@ -129,4 +129,4 @@ If you encounter any bugs or have feature requests, please create an issue in ou | |
|
||
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. | ||
|
||
Thank you for contributing to EarthDataStore Python Client! | ||
Thank you for contributing to EarthDaily Python Client! |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Authentication-related imports | ||
from earthdaily._api_requester import APIRequester | ||
from earthdaily._auth_client import Authentication, CognitoAuth | ||
|
||
# Client and config-related imports | ||
from earthdaily._eds_client import EDSClient | ||
from earthdaily._eds_config import EDSConfig | ||
|
||
# HTTP-related imports | ||
from earthdaily._http_client import HTTPClient, HTTPRequest, HTTPResponse | ||
|
||
# Platform-related imports | ||
from earthdaily.platform import PlatformService | ||
|
||
__all__ = [ | ||
"Authentication", | ||
"CognitoAuth", | ||
"APIRequester", | ||
"HTTPClient", | ||
"HTTPRequest", | ||
"HTTPResponse", | ||
"EDSClient", | ||
"EDSConfig", | ||
"PlatformService", | ||
] |
4 changes: 2 additions & 2 deletions
4
earthdatastore/_api_requester.py → earthdaily/_api_requester.py
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
earthdatastore/platform/__init__.py → earthdaily/platform/__init__.py
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
[tool.poetry] | ||
name = "earthdatastore" | ||
name = "earthdaily" | ||
version = "1.0.0b1" | ||
description = "EarthDaily Python Client" | ||
authors = ["EarthDaily <[email protected]>"] | ||
|
@@ -53,5 +53,5 @@ lint.ignore = [] | |
line-length = 120 | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=earthdatastore --cov-report=term-missing" | ||
addopts = "--cov=earthdaily --cov-report=term-missing" | ||
testpaths = ["tests"] |
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
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