Đỗ Trường Giang

Results 70 comments of Đỗ Trường Giang

There is a problem with the `pip install .` since it does not follow the `setup.py` logic. You can read more about it here: https://stackoverflow.com/questions/21781734/entry-points-does-not-create-custom-scripts-with-pip-only-with-easy-install-in. To sum up, what you...

Again, installing with the "." will not work. Please try to create a separate environment in a different directory than taipy, then install using the taipy path.

In the `pyproject.toml`, we defined mypy to exclude `(taipy/templates/|generate_pyi.py|tools)"`, which also excludes the duplicated modules in `taipy/templates`. I'm not sure why you are getting the error tbh, but it should...

@anunayasri I assigned the issue to you because you are already working on it. Let me know if it's ok. Thank you

Thank you @Forchapeatl. If you have any question regarding the implementation, feel free to ask us.

About the `_build_filters_with_version()`, because most Taipy entities have a version, this method create a filter dictionary to make sure getting the correct entities of the correct version. However, Cycle entities...

We can provide multiple options for the user to filter with each type of frequency. The user can only use 1 param. ### Daily scenarios - `get_scenarios(daily_cycle_on="week_days")` Returns daily scenarios...

Yes, scenarios without cycle can be filtered using other properties (like `creation_time`)

For "a way to create a tree (as a dict) of cycles and scenarios", the API already exists ```python import taipy as tp tp.get_cycles_scenarios() ``` For "I also needed to...

When configure csv, excel, in memory, json, parquet, pickle data node, you can provide the "default_data" attribute that will be automatically written to the data node if the data node...