-
Notifications
You must be signed in to change notification settings - Fork 5
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
[REFACTOR]Introduce a data processor for Egapro #409
Merged
Merged
Conversation
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
3 tasks
HAEKADI
changed the title
Refactor egapro
[REFACTOR]Introduce a data processor for Egapro
Nov 12, 2024
HAEKADI
force-pushed
the
refactor-egapro
branch
from
November 12, 2024 16:07
58b79cc
to
b47a60f
Compare
HAEKADI
force-pushed
the
refactor-egapro
branch
from
November 14, 2024 09:39
ff41dce
to
592bef7
Compare
hacherix
reviewed
Nov 15, 2024
HAEKADI
force-pushed
the
refactor-egapro
branch
from
November 15, 2024 15:18
592bef7
to
ee938d0
Compare
HAEKADI
force-pushed
the
refactor-egapro
branch
from
November 26, 2024 09:26
ee938d0
to
b384842
Compare
hacherix
approved these changes
Nov 26, 2024
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.
related to #405
Implement DataProcessor and Egapro functionality:
This PR introduces significant enhancements to the data pipeline workflow, including the creation of the
DataProcessor
class and theEgaproProcessor
class. The following key changes have been made:Creation of DataProcessor Class:
DataProcessor
class, which serves as a base class for processing various data sources. This class includes common functionality that can be reused across different processors.Implementation of Egapro Functionality:
EgaproProcessor
class, which extends theDataProcessor
class to handle specific data processing tasks related to Egapro.New Configuration Class:
DataSourceConfig
class to encapsulate configuration settings related to data sources. This class centralizes parameters such as URLs, file paths, and other relevant settings, making it easier to manage and modify configurations as needed.