We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
todo after #47
Improve the yaml loader with column rename mapping
Name: Pokemon version: 0.1 dir: ".../.../path/to/csv" catalog_type: FakeCatalog columns_mapping: - Name: Nom - Type: Type - ...
A new translate property has to allow the user to translate the headers. Default to False.
fake_catalog.get_key("Bulbasaur") #-> pd.DataFrame >>> n Name Type 1 Type 2 ... Sp. Def Speed Generation Legendary 1 Bulbasaur Grass Poison ... 65 45 1 False fake_catalog.translate = True fake_catalog.get_key("Bulbasaur") #-> pd.DataFrame >>> n Nom Type 1 Type 2 ... Sp. Def Vitesse Generation Legende 1 Bulbasaur Grass Poison ... 65 45 1 False
The support will be only for alphanumeric characters + underscores.
Test: Try to load the fake_catalog with headers translated in french.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the current behavior
todo after #47
Describe the expected behavior
Improve the yaml loader with column rename mapping
A new translate property has to allow the user to translate the headers. Default to False.
The support will be only for alphanumeric characters + underscores.
Test: Try to load the fake_catalog with headers translated in french.
Describe the motivation
No response
Extra Information
No response
The text was updated successfully, but these errors were encountered: