Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ We don't yet support creating files from scratch. In addition, support for `.twb
###Getting Started
To use this SDK, you must have Python installed. You can use either 2.7.X or 3.3 and later.

#### Installing the latest stable version (preferred)

```text
pip install tableaudocumentapi
```

#### Installing From Source

Download the `.zip` file that contains the SDK. Unzip the file and then run the following command:

```text
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
setup(
name='tableaudocumentapi',
version='0.0.1',
summary='A Python module for working with Tableau files.',
author='Tableau Software',
author_email='github@tableau.com',
url='https://github.com/tableau/document-api-python',
py_modules=['tableaudocumentapi'],
packages=['tableaudocumentapi'],
license='MIT',
description='A Python module for working with Tableau files.'
)