-
Notifications
You must be signed in to change notification settings - Fork 1
Feature/search #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bruvio
wants to merge
5
commits into
dev
Choose a base branch
from
feature/search
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feature/search #44
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fb95400
added wildcard search for a given endpoint and key
a02cac7
Merge branch 'dev' into feature/search_data_product
b88b63d
updated search data product
7d76fbc
added wrapper function to search data products name using wildcards
14c8012
fix code smell
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,15 +1,14 @@ | ||
| [tool.poetry] | ||
| authors = [ | ||
| "Ryan J Field <[email protected]>", | ||
| "Dennis Reddyhoff <[email protected]>", | ||
| "Robert D Turner <[email protected]>", | ||
| "Bruno Viola <[email protected]>", | ||
| "Kristian Zarebski <[email protected]>", | ||
| ] | ||
| description = "Python api to interact with the Fair Data Pipeline" | ||
| name = "data_pipeline_api" | ||
| version = "0.7.5" | ||
| description = "Python api to interact with the Fair Data Pipeline" | ||
| authors = [ | ||
| "Ryan J Field <[email protected]>", | ||
| "Dennis Reddyhoff <[email protected]>", | ||
| "Robert D Turner <[email protected]>", | ||
| "Bruno Viola <[email protected]>", | ||
| "Kristian Zarebski <[email protected]>" | ||
| ] | ||
|
|
||
|
|
||
| homepage = "https://www.fairdatapipeline.org/" | ||
|
|
||
|
|
@@ -18,74 +17,69 @@ repository = "https://github.com/FAIRDataPipeline/pyDataPipeline" | |
| license = "GNU General Public License v3.0" | ||
|
|
||
| packages = [ | ||
| {include = "data_pipeline_api"} | ||
| {include = "data_pipeline_api"}, | ||
| ] | ||
|
|
||
| readme = "README.md" | ||
|
|
||
| keywords = [ | ||
| "FAIR Data Pipeline", | ||
| "FAIR", | ||
| "Data Management", | ||
| "Provenance" | ||
| "FAIR Data Pipeline", | ||
| "FAIR", | ||
| "Data Management", | ||
| "Provenance", | ||
| ] | ||
|
|
||
| [tool.poetry.dependencies] | ||
| PyYAML = "^6.0" | ||
| h5py = "^3.6.0" | ||
| matplotlib = "^3.5.1" | ||
| python = "^3.7.1,<3.11" | ||
| requests = "^2.27.1" | ||
| matplotlib = "^3.5.1" | ||
| scipy = "^1.7.3" | ||
| h5py = "^3.6.0" | ||
| PyYAML = "^6.0" | ||
|
|
||
| [tool.poetry.dev-dependencies] | ||
| pytest = "^7.0.0" | ||
| Sphinx = "^4.3.2" | ||
| black = "^22.1" | ||
| mypy = "^0.931" | ||
| flake8 = "^4.0.1" | ||
| isort = "^5.10.1" | ||
| mypy = "^0.931" | ||
| poetry = "^1.1.6" | ||
| pytest-mock = "^3.7.0" | ||
| pytest-dependency = "^0.5.1" | ||
| pytest-cov = "^3.0.0" | ||
| pre-commit = "^2.17.0" | ||
| isort = "^5.10.1" | ||
| Sphinx = "^4.3.2" | ||
| pytest = "^7.0.0" | ||
| pytest-cov = "^3.0.0" | ||
| pytest-dependency = "^0.5.1" | ||
| pytest-mock = "^3.7.0" | ||
| sphinx-rtd-theme = "^1.0.0" | ||
|
|
||
| [build-system] | ||
| requires = ["poetry-core>=1.0.0"] | ||
| build-backend = "poetry.core.masonry.api" | ||
|
|
||
| requires = ["poetry-core>=1.0.0"] | ||
|
|
||
| [tool.poetry.urls] | ||
| "Issue Tracker" = "https://github.com/FAIRDataPipeline/pyDataPipeline/issues" | ||
|
|
||
|
|
||
|
|
||
| [tool.isort] | ||
| profile = 'black' | ||
| multi_line_output = 3 | ||
| include_trailing_comma = true | ||
| force_grid_wrap = 0 | ||
| use_parentheses = true | ||
| ensure_newline_before_comments = true | ||
| force_grid_wrap = 0 | ||
| include_trailing_comma = true | ||
| line_length = 79 | ||
|
|
||
|
|
||
| multi_line_output = 3 | ||
| profile = 'black' | ||
| use_parentheses = true | ||
|
|
||
| [tool.black] | ||
| line-length = 79 | ||
|
|
||
| [tool.pytest.ini_options] | ||
| addopts = '-s -v --cov=fairdatapipeline --cov-report=html --cov-report=term' | ||
| addopts = '-s -v --cov=data_pipeline_api --cov-report=html --cov-report=term' | ||
| markers = [ | ||
| "pipeline: tests for 'pipeline' module ", | ||
| "issue: tests for raising issues ", | ||
| "utilities: tests for 'utilities' functions ", | ||
| "apiversion: tests for api versioning ", | ||
| "pipeline: tests for 'pipeline' module ", | ||
| "issue: tests for raising issues ", | ||
| "utilities: tests for 'utilities' functions ", | ||
| "apiversion: tests for api versioning ", | ||
| ] | ||
|
|
||
| [tool.mypy] | ||
| ignore_missing_imports = true | ||
| disallow_untyped_defs = true | ||
| disallow_untyped_calls = true | ||
| disallow_untyped_defs = true | ||
| ignore_missing_imports = true | ||
This file contains hidden or 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,20 @@ | ||
| run_metadata: | ||
| description: Write csv file | ||
| local_data_registry_url: http://127.0.0.1:8000/api/ | ||
| remote_data_registry_url: https://data.scrc.uk/api/ | ||
| default_input_namespace: testing | ||
| default_output_namespace: testing | ||
| write_data_store: tmp | ||
| local_repo: ./ | ||
| script: |- | ||
| python3 py.test | ||
| public: true | ||
| latest_commit: 221bfe8b52bbfb3b2dbdc23037b7dd94b49aaa70 | ||
| remote_repo: https://github.com/FAIRDataPipeline/pyDataPipeline | ||
|
|
||
| write: | ||
| - data_product: find/csv | ||
| description: test csv to test find data products | ||
| file_type: csv | ||
| use: | ||
| version: 0.0.1 |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.