Based on Tableau Hyper API this repository is intended to manage importing any CSV file into Tableau-Hyper format (to be used with Tableau Desktop/Server) with minimal configuration (as column detection, content type detection and reinterpretation of content are part of the included logic), therefore speed up the process of building extract.
Also, a publishing data source script allows taking resulted Tableau Hyper file and publish it to a Tableau Server. This is possible thank to excellent Tableau supported logic: Tableau Server Client (Python) package.
This feature allows you to automate tedious tasks to refresh data on the server side (one real-life example could be a daily/weekly snapshot of a dynamically changing content to capture big variations in time in Development or Quality layer before reaching Production environment).
Repository owner is: Daniel Popiniuc
- conversion intake data from a single or multiple CSV files based on a single input parameter (can be specific or contain a file pattern);
- dynamic fields detection based ont 1st line content and provided field separator (strategic advantage);
- dynamic advanced content type detection covering following data types: integer, float-dot, date-iso8601, date-DMY-dash, date-DMY-dot, date-DMY-slash, date-MDY, date-MDY-medium, date-MDY-long, time-12, time-12-micro-sec, time-24, time-24-micro-sec, datetime-iso8601, datetime-iso8601-micro-sec, datetime-MDY, datetime-MDY-micro-sec, datetime-MDY-medium, datetime-MDY-medium-micro-sec, datetime-MDY-long, datetime-MDY-long-micro-sec, string;
- support for empty field content for any data type (required re-interpreting CSV to be accepted by Hyper Inserter to ensure data types INT or DOUBLE are considered);
- use Panda package to benefit of Data Frames speed and flexibility;
- log file to capture entire logic details (very useful for either traceability but also debugging);
- most of the logic actions are not timed for performance measuring, so you can plan better your needs;
- publishing a Tableau Extract (Hyper format) to a Tableau Server (specifying Site and Project);
- detection of operating system current region language and log all feedback details using that.
Output (right) File Type/Format Input (down) |
Comma Separated Values | Excel | JSON | Parquet | Pickle | Tableau Extract (Hyper) |
---|---|---|---|---|---|---|
Comma Separated Values | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Excel | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ⛔ |
JSON | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ⛔ |
Parquet | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Pickle | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Tableau Extract (Hyper) | ✔️ | ⛔ | ⛔ | ⛔ | ✔️ | 🔜 |
Installation can be completed in few steps as follows:
- Ensure you have git available to your system:
$ git --version
If you get an error, depending on your system, you need to install it.
For Windows, you can do so from Git for Windows;
- Download this project from Github:
$ git clone https://github.com/danielgp/tableau-hyper-management <local_path_of_this_package>
conventions used:
<content_within_html_tags> = variables to be replaced with user values relevant strings
- Create a Python Virtual Environment using following command executed from project root folder:
$ python(.exe) -m venv <local_folder_on_your_computer_for_this_package>/virtual_environment/
- Upgrade pip (PIP is a package manager for Python packages) using following command executed from newly created virtual environment and Scripts sub-folder:
$ <local_path_of_this_package>/virtual_environment/Scripts/python(.exe) -m pip install --upgrade pip
- Install project prerequisites using following command executed from project root folder:
$ <local_path_of_this_package>/virtual_environment/Scripts/pip install -r requirements.txt
- Ensure all localization source files are compiled properly in order for the package to work properly
$ <local_path_of_this_package>/virtual_environment/Scripts/python(.exe) <local_path_of_this_package>/sources/localizations_compile.py
Once the package is installed is quite important to keep up with the latest releases as such are addressing important code improvements and potential security issues, and this can be achieved by following command:
$ git --work-tree=<local_path_of_this_package> --git-dir=<local_path_of_this_package>/.git/ --no-pager pull origin master
- conventions used:
- <content_within_html_tags> = variables to be replaced with user values relevant strings
$ <local_path_of_this_package>/virtual_environment/Scripts/python(.exe) <local_path_of_this_package>/tableau_hyper_management/converter.py --input-file <full_path_and_file_base_name_to_file_having_content_as_CSV> --input-file-format csv|excel|json|pickle --input-file-compression infer|bz2|gzip|xz|zip --csv-field-separator ,|; --output-file <full_path_and_file_base_name_to_generated_file>(.hyper) --output-file-format csv|excel|hyper|json|pickle --output-file-compression infer|bz2|gzip|xz|zip (--output-log-file <full_path_and_file_name_to_log_running_details>) (--unique-values-to-analyze-limit 100|200=default_value_if_omitted|500|1000)
- conventions used:
- (content_within_round_parenthesis) = optional
- <content_within_html_tags> = variables to be replaced with user values relevant strings
- single vertical pipeline = separator for alternative options
$ <local_path_of_this_package>/virtual_environment/Scripts/python(.exe) <local_path_of_this_package>/tableau_hyper_management/publish_data_source.py --input-file <full_path_and_file_base_name_with_tableau_extract>(.hyper) --tableau-server <tableau_server_url> --tableau-site <tableau_server_site_to_publish_to> --tableau-project <tableau_server_project_to_publish_to> --publishing-mode Append|CreateNew|Overwrite==default_if_omitted --input-credentials-file %credentials_file% (--output-log-file <full_path_and_file_name_to_log_running_details>)
- conventions used:
- (content_within_round_parenthesis) = optional
- <content_within_html_tags> = variables to be replaced with user values relevant strings
- single vertical pipeline = separator for alternative options
see CHANGE_LOG.md
Planned features to add (of course, when time will permit / help would be appreciated / votes|feedback is welcomed)
- additional formats to be recognized, like:
- float-USA-thousand-separator,
- float-EU,
- float-EU-thousand-separator;
- geographical identifiers (Country, US - Zip Codes)