8000 Merge pull request #255 from tableau/development · cvdavis3/server-client-python@564dda1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 564dda1

Browse files
author
Russell Hay
authored
Merge pull request tableau#255 from tableau/development
Release 0.6
2 parents 44038b0 + 1a2d921 commit 564dda1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1201
-270
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,4 @@ $RECYCLE.BIN/
147147
# Documentation
148148
docs/_site/
149149
docs/.jekyll-metadata
150+
docs/Gemfile.lock

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ script:
1515
# Tests
1616
- python setup.py test
1717
# pep8 - disabled for now until we can scrub the files to make sure we pass before turning it on
18-
- pycodestyle tableauserverclient test
18+
- pycodestyle tableauserverclient test samples

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## 0.5.1 (21 Sept 2017
1+
## 0.6 (17 Jan 2018)
2+
3+
* Added support for add a datasource/workbook refresh to a schedule (#244)
4+
* Added support for updating datasource connections (#253)
5+
* Added Refresh Now for datasource and workbooks (#250)
6+
* Fixed Typos in the docs (#251)
7+
8+
## 0.5.1 (21 Sept 2017)
29

310
* Fix a critical issue caused by #224 that was the result of lack of test coverage (#226)
411

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The following people have contributed to this project to make it possible, and w
1414
* [Russ Goldin](https://github.com/tagyoureit)
1515
* [William Lang](https://github.com/williamlang)
1616
* [Jim Morris](https://github.com/jimbodriven)
17+
* [BingoDinkus](https://github.com/BingoDinkus)
1718

1819
## Core Team
1920

docs/Gemfile.lock

Lines changed: 0 additions & 129 deletions
This file was deleted.

docs/docs/api-ref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,7 @@ server = TSC.Server('http://servername')
25752575

25762576
with server.auth.sign_in(tableau_auth):
25772577
all_workbook_items, pagination_item = server.workbooks.get()
2578-
print([workbook.name for workbook in all_workbooks])
2578+
print([workbook.name for workbook in all_workbook_items])
25792579

25802580

25812581

docs/docs/versions.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ import tableauserverclient as TSC
3232

3333
server = TSC.Server('http://SERVER_URL')
3434

35-
server.version = '2.4'
35+
36+
server.version = '2.6'
37+
38+
39+
3640
```
3741

3842
## Supported versions
@@ -43,3 +47,5 @@ The current version of TSC only supports the following REST API and Tableau Serv
4347
|---|---|
4448
|2.3|10.0|
4549
|2.4|10.1|
50+
|2.5|10.2|
51+
|2.6|10.3|

samples/create_project.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def create_project(server, project_item):
2424
print('We have already created this project: %s' % project_item.name)
2525
sys.exit(1)
2626

27+
2728
def main():
2829
parser = argparse.ArgumentParser(description='Get all of the refresh tasks available on a server')
2930
parser.add_argument('--server', '-s', required=True, help='server address')
@@ -64,5 +65,6 @@ def main():
6465
grand_child_project = TSC.ProjectItem(name='Grand Child Project', parent_id=child_project.id)
6566
grand_child_project = create_project(server, grand_child_project)
6667

68+
6769
if __name__ == '__main__':
6870
main()

samples/download_view_image.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,6 @@ def main():
6464

6565
print("View image saved to {0}".format(args.filepath))
6666

67+
6768
if __name__ == '__main__':
6869
main()

samples/explore_datasource.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,6 @@ def main():
7979
sample_datasource.tags = original_tag_set
8080
server.datasources.update(sample_datasource)
8181

82+
8283
if __name__ == '__main__':
8384
main()

0 commit comments

Comments
 (0)
0