-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Expand the exposed_type
parameter of DataNode to accept actual Python types
#398
Comments
Extension: mixed rendering (#397)
Can i help out here ? |
Thank you @sqrt676. I assigned the ticket to you. Let us know if you need more information on this. |
Thanks @trgiangdo , will ask for information wherever needed. |
Hello @sqrt676, any update on this issue? |
@trgiangdo can I take this one? |
Absolutely. I will assign the issue to you @ranjanmangla1. If you have any question on the topic, feel free to ask here. |
@trgiangdo just want to ask, since this issue is almost 18 months old now, what changes have been to taipy? and since modin has been deprecated in taipy, is there a need to provide support for modin.pandas.DataFrame? |
Oh, you're right. Let me update the description. Other than that, there hasn't been any other change that affect this issue. |
This issue has been labelled as "🥶Waiting for contributor" because it has been inactive for more than 14 days. If you would like to continue working on this issue, please add another comment or create a PR that links to this issue. If a PR has already been created which refers to this issue, then you should explicitly mention this issue in the relevant PR. Otherwise, you will be unassigned in 14 days. For more information please refer to the contributing guidelines. |
This issue has been unassigned automatically because it has been marked as "🥶Waiting for contributor" for more than 14 days with no activity. |
hi , @trgiangdo |
Hello @NILAY1556, Yes, it is still open. Let me assign it to you. Thank you, |
feature/enterprise/#398 load enterprise _TaskFunctionWrapper
Bug/Fix failing issue on enterprise due to import manager
This issue has been labelled as "🥶Waiting for contributor" because it has been inactive for more than 14 days. If you would like to continue working on this issue, please add another comment or create a PR that links to this issue. If a PR has already been created which refers to this issue, then you should explicitly mention this issue in the relevant PR. Otherwise, you will be unassigned in 14 days. For more information please refer to the contributing guidelines. |
feature/enterprise/#398 external services integration preparation
This issue has been unassigned automatically because it has been marked as "🥶Waiting for contributor" for more than 14 days with no activity. |
Hey can I take up this issue ? |
@SaiNivedh26 That would be great. Thank you. |
This issue has been labelled as "🥶Waiting for contributor" because it has been inactive for more than 14 days. If you would like to continue working on this issue, please add another comment or create a PR that links to this issue. If a PR has already been created which refers to this issue, then you should explicitly mention this issue in the relevant PR. Otherwise, you will be unassigned in 14 days. For more information please refer to the contributing guidelines. |
@jrobinAV, please confirm whether this issue needs to be open. I already see a merged PR done based on the requirements mentioned in the issue. If yes, please elaborate on the requirement, because what is asked in the issue is already addressed. Also, I would like to take this issue if requirements are yet to be fulfilled. |
Hello @sohamkumar05, Thank you for your help. Yes, indeed, this is still open to contribution. Let me assign it to you. Let me give a fake example with a CSV data node. Today, the code should look like the following. import taipy as tp
cfg = tp.config.Config.configure_csv_data_node(
id="my_id", scope: tp.Scope.GLOBAL, default_path="my/path.csv",
exposed_type="pandas") # The `exposed_type` parameter is a string
dn = tp.create_global_datanode(cfg) This issue is about accepting the following code: import taipy as tp
import pandas as pd
cfg = tp.config.Config.configure_csv_data_node(
id="my_id", scope: tp.Scope.GLOBAL, default_path="my/path.csv",
exposed_type=pd.DataFrame) # The `exposed_type` can be a predefined DataFrame type
dn = tp.create_global_datanode(cfg) |
…tps://github.com/sohamkumar05/taipy into feature/Avaiga#398-expand-exposed-type-parameter
This issue has been labelled as "🥶Waiting for contributor" because it has been inactive for more than 14 days. If you would like to continue working on this issue, please add another comment or create a PR that links to this issue. If a PR has already been created which refers to this issue, then you should explicitly mention this issue in the relevant PR. Otherwise, you will be unassigned in 14 days. For more information please refer to the contributing guidelines. |
Description
For now, the
exposed_type
parameter only accepts a string (`"pandas", "numpy") or a custom python class.This ticket proposes to expand the parameter type to accept actual Python types for the predefined types:
numpy.array
pandas.DataFrame
The text was updated successfully, but these errors were encountered: