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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ script:
# pep8
- pep8 .
# Examples
- (cd "Examples/Replicate Workbook" && python replicateWorkbook.py)
- (cd "Examples/List TDS Info" && python listTDSInfo.py)
- (cd "Examples/GetFields" && python show_fields.py)
- (cd "samples/replicate-workbook" && python replicate_workbook.py)
- (cd "samples/list-tds-info" && python list_tds_info.py)
- (cd "samples/show-fields" && python show_fields.py)

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.3 (31 August 2016)

* Added basic connection class retargeting (#65)
* Added ability to create a new connection (#69)
* Improved Test Coverage (#62, #67)
* Added description to the field object (#73)

## 0.2 (22 July 2016)

* Added support for loading twbx and tdsx files (#43, #44)
Expand Down
1 change: 0 additions & 1 deletion Examples/GetFields/World.tds

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
############################################################
# Step 2) Open the .tds we want to replicate
############################################################
sourceTDS = Datasource.from_file('World.tds')
sourceTDS = Datasource.from_file('world.tds')

############################################################
# Step 3) List out info from the TDS
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
############################################################
# Step 2) Open the .twb we want to replicate
############################################################
sourceWB = Workbook('Sample - Superstore.twb')
sourceWB = Workbook('sample-superstore.twb')

############################################################
# Step 3) Use a database list (in CSV), loop thru and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
############################################################
# Step 2) Open the .tds we want to inspect
############################################################
sourceTDS = Datasource.from_file('World.tds')
sourceTDS = Datasource.from_file('world.tds')

############################################################
# Step 3) Print out all of the fields and what type they are
Expand Down
1 change: 1 addition & 0 deletions samples/show-fields/world.tds
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='tableaudocumentapi',
version='0.2',
version='0.3',
author='Tableau Software',
author_email='[email protected]',
url='https://github.com/tableau/document-api-python',
Expand Down