feat: add CSV, JSON, and Parquet URL data providers#472
Merged
Conversation
- Add BaseURLDataProvider with shared caching, refresh intervals, date parsing, and pre/post-processing logic - Add CSVURLDataProvider, JSONURLDataProvider, ParquetURLDataProvider - Add DataSource.from_csv(), from_json(), from_parquet() factory methods - Add context.fetch_csv(), fetch_json(), fetch_parquet() on-demand methods - Fix cache path resolution for cloud deployments (AWS Lambda / Azure Functions) - Add 43 tests covering all three providers - Add external-data.md documentation page - Update README with external data capabilities Closes #458
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add support for loading external CSV, JSON, and Parquet data from any URL during strategy execution.
Changes
resources/data/(synced by state handlers in cloud deployments) instead of a detached.data_cache/directoryexternal-data.mddocs page, sidebar registration, README updatesCloud deployment support
Cache files live inside the resource directory, so
AWSS3StorageStateHandlerandAzureBlobStorageStateHandlerautomatically persist them.refresh_intervalworks correctly across cold starts using file modification times.Closes #458