Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added info about using PAT with on-prem #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 6 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,9 @@ Running the command will return the following.
```

You have now run your first Flight query on Dremio Cloud!

### Note
* If you are running Dremio Enterprise on your own infrastructure (i.e. not running on Dremio Cloud) and are using PATs, the PAT must be added as the value to the `-pass` parameter and the `-user` must be specified.
E.g:

```python3 example.py -host my.dremio.local -port 443 -user dremio -pass '<INSERT PAT HERE>' -tls -query 'SELECT * FROM Samples."samples.dremio.com"."NYC-taxi-trips" limit 10'```