gitextract_g_ptwokv/ ├── .github/ │ └── workflows/ │ ├── publish-pypi.yml │ └── python-package.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── docs/ │ ├── .keep │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ ├── analytics.html │ │ ├── docs_menu.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ └── search_form.html │ ├── _layouts/ │ │ ├── default.html │ │ ├── docs.html │ │ ├── home.html │ │ └── search.html │ ├── css/ │ │ ├── api_ref.css │ │ ├── extra.css │ │ ├── github-highlight.css │ │ └── main.css │ ├── docs/ │ │ ├── api-ref.md │ │ ├── contributing.md │ │ ├── dev-guide.md │ │ ├── index.md │ │ └── search.md │ ├── index.md │ └── js/ │ ├── redirect-to-search.js │ └── search.js ├── publish.sh ├── requirements.txt ├── samples/ │ ├── preserve-namespaces/ │ │ ├── TABLEAU_10_TWB.twb │ │ ├── filtering.twb │ │ └── preserve-namespaces.py │ ├── replicate-workbook/ │ │ ├── databases.csv │ │ ├── replicate_workbook.py │ │ └── sample-superstore.twb │ ├── show-fields/ │ │ ├── nested.tds │ │ ├── new-world.tds │ │ └── show_fields.py │ └── show_workbook_info/ │ ├── geocoding.twbx │ ├── show_workbook_info.py │ └── world.tds ├── setup.cfg ├── setup.py ├── tableaudocumentapi/ │ ├── __init__.py │ ├── connection.py │ ├── datasource.py │ ├── dbclass.py │ ├── field.py │ ├── multilookup_dict.py │ ├── property_decorators.py │ ├── workbook.py │ └── xfile.py └── test/ ├── __init__.py ├── assets/ │ ├── .gitignore │ ├── CONNECTION.xml │ ├── Cache.twbx │ ├── TABLEAU_10_TDS.tds │ ├── TABLEAU_10_TDSX.tdsx │ ├── TABLEAU_10_TWB.twb │ ├── TABLEAU_10_TWBX.twbx │ ├── TABLEAU_82_TWB.twb │ ├── TABLEAU_93_TDS.tds │ ├── TABLEAU_93_TWB.twb │ ├── __init__.py │ ├── datasource_test.tds │ ├── datasource_test.twb │ ├── empty_workbook.twb │ ├── ephemeral_field.twb │ ├── field_change_test.tds │ ├── filtering.twb │ ├── index.py │ ├── multiple_connections.twb │ ├── shapes_test.twb │ └── unicode.tds ├── bvt.py ├── test_datasource.py ├── test_field.py ├── test_field_change.py ├── test_multidict.py ├── test_workbook.py └── test_xfile.py