Metadata-Version: 2.4
Name: TableauDesktopPy
Version: 1.0.7
Summary: Tools for extracting metadata from Tableau Desktop workbook files.
Home-page: https://github.com/bpewyllie/tableaudesktoppy
Author: Brady Wyllie
Author-email: bpewyllie@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# TableauDesktopPy
 Tools for extracting metadata from Tableau Desktop workbook files. This package parses the underlying xml of a workbook to retrieve information on its style and data connections.

 ## Installation

 Install with pip:

 ```pip install TableauDesktopPy```

 ## Usage

 1. Provide a valid Tableau workbook file ('.twb' or '.twbx') to declare a `Workbook` object:

 ```
import TableauDesktopPy as tdp

my_workbook = tdp.Workbook("C:\Users\bpewyllie\test_workbook.twbx")
 ```

 2. Then use any of the following methods to retrieve workbook metadata:

 * `Workbook.get_colors`
 * `Workbook.get_custom_sql`
 * `Workbook.get_excel`
 * `Workbook.get_fonts`
 * `Workbook.get_hidden_fields`
 * `Workbook.get_onedrive`
 * `Workbook.get_xml`

 3. Other metadata may be retrieved by calling the `Workbook.xml` attribute and parsing with an xml parser such as BeautifulSoup.


