8000 Minor edits and cleanup · rshide/server-client-python@803d257 · GitHub
[go: up one dir, main page]

Skip to content

Commit 803d257

Browse files
committed
Minor edits and cleanup
1 parent ccbbc49 commit 803d257

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Tableau Server Client (Python)
2-
[![Tableau Supported](https://img.shields.io/badge/Support%20Level-Tableau%20Supported-53bd92.svg)](https://www.tableau.com/support-levels-it-and-developer-tools)
2+
3+
[![Tableau Supported](https://img.shields.io/badge/Support%20Level-Tableau%20Supported-53bd92.svg)](https://www.tableau.com/support-levels-it-and-developer-tools) [![Build Status](https://travis-ci.org/tableau/server-client-python.svg?branch=master)](https://travis-ci.org/tableau/server-client-python)
34

45
Use the Tableau Server Client (TSC) library to increase your productivity as you interact with the Tableau Server REST API. With the TSC library you can do almost everything that you can do with the REST API, including:
56

67
* Publish workbooks and data sources.
78
* Create users and groups.
89
* Query projects, sites, and more.
910

10-
This repository contains Python source code and sample files.
11+
This repository contains Python source code and sample files. Python versions 3.5 and up are supported.
1112

1213
For more information on installing and using TSC, see the documentation:
13-
1414
<https://tableau.github.io/server-client-python/docs/>

contributing.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ a feature do not require the CLA.
1515

1616
## Issues and Feature Requests
1717

18-
To submit an issue/bug report, or to request a feature, please submit a [github issue](https://github.com/tableau/server-client-python/issues) to the repo.
18+
To submit an issue/bug report, or to request a feature, please submit a [GitHub issue](https://github.com/tableau/server-client-python/issues) to the repo.
1919

2020
If you are submitting a bug report, please provide as much information as you can, including clear and concise repro steps, attaching any necessary
2121
files to assist in the repro. **Be sure to scrub the files of any potentially sensitive information. Issues are public.**
@@ -48,19 +48,24 @@ anyone can add to an issue:
4848
## Fixes, Implementations, and Documentation
4949

5050
For all other things, please submit a PR that includes the fix, documentation, or new code that you are trying to contribute. More information on
51-
creating a PR can be found in the [Development Guide](https://tableau.github.io/server-client-python/docs/dev-guide)
51+
creating a PR can be found in the [Development Guide](https://tableau.github.io/server-client-python/docs/dev-guide).
5252

5353
If the feature is complex or has multiple solutions that could be equally appropriate approaches, it would be helpful to file an issue to discuss the
5454
design trade-offs of each solution before implementing, to allow us to collectively arrive at the best solution, which most likely exists in the middle
5555
somewhere.
5656

57-
5857
## Getting Started
59-
> pip install versioneer
60-
> python setup.py build
61-
> python setup.py test
62-
>
63-
64-
### before committing
65-
Our CI runs include a python lint run, so you should run this locally and fix complaints before committing as this will fail your checkin
66-
> pycodestyle tableauserverclient test samples
58+
59+
```shell
60+
pip install versioneer
61+
python setup.py build
62+
python setup.py test
63+
```
64+
65+
### Before Committing
66+
67+
Our CI runs include a Python lint run, so you should run this locally and fix complaints before committing as this will fail your checkin.
68+
69+
```shell
70+
pycodestyle tableauserverclient test samples
71+
```

0 commit comments

Comments
 (0)
0