tableauserverclient 0.38__py3-none-any.whl → 0.39__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. tableauserverclient/bin/_version.py → _version.py +3 -3
  2. bin/__init__.py +3 -0
  3. bin/_version.py +21 -0
  4. {tableauserverclient/models → models}/__init__.py +9 -0
  5. models/collection_item.py +52 -0
  6. {tableauserverclient/models → models}/connection_item.py +16 -2
  7. {tableauserverclient/models → models}/custom_view_item.py +8 -0
  8. {tableauserverclient/models → models}/data_freshness_policy_item.py +3 -3
  9. {tableauserverclient/models → models}/datasource_item.py +3 -1
  10. models/extensions_item.py +186 -0
  11. {tableauserverclient/models → models}/favorites_item.py +21 -8
  12. {tableauserverclient/models → models}/flow_item.py +1 -1
  13. {tableauserverclient/models → models}/group_item.py +7 -1
  14. {tableauserverclient/models → models}/groupset_item.py +14 -0
  15. {tableauserverclient/models → models}/interval_item.py +2 -1
  16. models/oidc_item.py +82 -0
  17. {tableauserverclient/models → models}/permissions_item.py +2 -0
  18. {tableauserverclient/models → models}/project_item.py +3 -2
  19. {tableauserverclient/models → models}/property_decorators.py +2 -2
  20. {tableauserverclient/models → models}/reference_item.py +12 -6
  21. {tableauserverclient/models → models}/schedule_item.py +10 -1
  22. {tableauserverclient/models → models}/site_item.py +26 -0
  23. {tableauserverclient/models → models}/tableau_auth.py +13 -6
  24. {tableauserverclient/models → models}/user_item.py +10 -3
  25. {tableauserverclient/models → models}/workbook_item.py +2 -2
  26. {tableauserverclient/server → server}/endpoint/__init__.py +4 -0
  27. {tableauserverclient/server → server}/endpoint/datasources_endpoint.py +152 -22
  28. server/endpoint/extensions_endpoint.py +79 -0
  29. {tableauserverclient/server → server}/endpoint/flow_task_endpoint.py +1 -1
  30. {tableauserverclient/server → server}/endpoint/flows_endpoint.py +5 -4
  31. server/endpoint/oidc_endpoint.py +157 -0
  32. {tableauserverclient/server → server}/endpoint/projects_endpoint.py +12 -0
  33. {tableauserverclient/server → server}/endpoint/schedules_endpoint.py +48 -1
  34. {tableauserverclient/server → server}/endpoint/users_endpoint.py +274 -5
  35. {tableauserverclient/server → server}/endpoint/views_endpoint.py +23 -0
  36. {tableauserverclient/server → server}/endpoint/workbooks_endpoint.py +124 -9
  37. {tableauserverclient/server → server}/request_factory.py +281 -2
  38. {tableauserverclient/server → server}/request_options.py +12 -2
  39. {tableauserverclient/server → server}/server.py +4 -0
  40. {tableauserverclient-0.38.dist-info → tableauserverclient-0.39.dist-info}/METADATA +5 -26
  41. tableauserverclient-0.39.dist-info/RECORD +107 -0
  42. {tableauserverclient-0.38.dist-info → tableauserverclient-0.39.dist-info}/WHEEL +1 -1
  43. tableauserverclient-0.39.dist-info/top_level.txt +4 -0
  44. tableauserverclient/__init__.py +0 -145
  45. tableauserverclient/config.py +0 -27
  46. tableauserverclient/datetime_helpers.py +0 -45
  47. tableauserverclient/exponential_backoff.py +0 -30
  48. tableauserverclient/filesys_helpers.py +0 -63
  49. tableauserverclient/namespace.py +0 -37
  50. tableauserverclient/py.typed +0 -0
  51. tableauserverclient-0.38.dist-info/RECORD +0 -108
  52. tableauserverclient-0.38.dist-info/licenses/LICENSE.versioneer +0 -7
  53. tableauserverclient-0.38.dist-info/top_level.txt +0 -1
  54. {tableauserverclient/helpers → helpers}/__init__.py +0 -0
  55. {tableauserverclient/helpers → helpers}/headers.py +0 -0
  56. {tableauserverclient/helpers → helpers}/logging.py +0 -0
  57. {tableauserverclient/helpers → helpers}/strings.py +0 -0
  58. {tableauserverclient/models → models}/column_item.py +0 -0
  59. {tableauserverclient/models → models}/connection_credentials.py +0 -0
  60. {tableauserverclient/models → models}/data_acceleration_report_item.py +0 -0
  61. {tableauserverclient/models → models}/data_alert_item.py +0 -0
  62. {tableauserverclient/models → models}/database_item.py +0 -0
  63. {tableauserverclient/models → models}/dqw_item.py +0 -0
  64. {tableauserverclient/models → models}/exceptions.py +0 -0
  65. {tableauserverclient/models → models}/extract_item.py +0 -0
  66. {tableauserverclient/models → models}/fileupload_item.py +0 -0
  67. {tableauserverclient/models → models}/flow_run_item.py +0 -0
  68. {tableauserverclient/models → models}/job_item.py +0 -0
  69. {tableauserverclient/models → models}/linked_tasks_item.py +0 -0
  70. {tableauserverclient/models → models}/location_item.py +0 -0
  71. {tableauserverclient/models → models}/metric_item.py +0 -0
  72. {tableauserverclient/models → models}/pagination_item.py +0 -0
  73. {tableauserverclient/models → models}/revision_item.py +0 -0
  74. {tableauserverclient/models → models}/server_info_item.py +0 -0
  75. {tableauserverclient/models → models}/subscription_item.py +0 -0
  76. {tableauserverclient/models → models}/table_item.py +0 -0
  77. {tableauserverclient/models → models}/tableau_types.py +0 -0
  78. {tableauserverclient/models → models}/tag_item.py +0 -0
  79. {tableauserverclient/models → models}/target.py +0 -0
  80. {tableauserverclient/models → models}/task_item.py +0 -0
  81. {tableauserverclient/models → models}/view_item.py +0 -0
  82. {tableauserverclient/models → models}/virtual_connection_item.py +0 -0
  83. {tableauserverclient/models → models}/webhook_item.py +0 -0
  84. {tableauserverclient/server → server}/__init__.py +0 -0
  85. {tableauserverclient/server → server}/endpoint/auth_endpoint.py +0 -0
  86. {tableauserverclient/server → server}/endpoint/custom_views_endpoint.py +0 -0
  87. {tableauserverclient/server → server}/endpoint/data_acceleration_report_endpoint.py +0 -0
  88. {tableauserverclient/server → server}/endpoint/data_alert_endpoint.py +0 -0
  89. {tableauserverclient/server → server}/endpoint/databases_endpoint.py +0 -0
  90. {tableauserverclient/server → server}/endpoint/default_permissions_endpoint.py +0 -0
  91. {tableauserverclient/server → server}/endpoint/dqw_endpoint.py +0 -0
  92. {tableauserverclient/server → server}/endpoint/endpoint.py +0 -0
  93. {tableauserverclient/server → server}/endpoint/exceptions.py +0 -0
  94. {tableauserverclient/server → server}/endpoint/favorites_endpoint.py +0 -0
  95. {tableauserverclient/server → server}/endpoint/fileuploads_endpoint.py +0 -0
  96. {tableauserverclient/server → server}/endpoint/flow_runs_endpoint.py +0 -0
  97. {tableauserverclient/server → server}/endpoint/groups_endpoint.py +0 -0
  98. {tableauserverclient/server → server}/endpoint/groupsets_endpoint.py +0 -0
  99. {tableauserverclient/server → server}/endpoint/jobs_endpoint.py +0 -0
  100. {tableauserverclient/server → server}/endpoint/linked_tasks_endpoint.py +0 -0
  101. {tableauserverclient/server → server}/endpoint/metadata_endpoint.py +0 -0
  102. {tableauserverclient/server → server}/endpoint/metrics_endpoint.py +0 -0
  103. {tableauserverclient/server → server}/endpoint/permissions_endpoint.py +0 -0
  104. {tableauserverclient/server → server}/endpoint/resource_tagger.py +0 -0
  105. {tableauserverclient/server → server}/endpoint/server_info_endpoint.py +0 -0
  106. {tableauserverclient/server → server}/endpoint/sites_endpoint.py +0 -0
  107. {tableauserverclient/server → server}/endpoint/subscriptions_endpoint.py +0 -0
  108. {tableauserverclient/server → server}/endpoint/tables_endpoint.py +0 -0
  109. {tableauserverclient/server → server}/endpoint/tasks_endpoint.py +0 -0
  110. {tableauserverclient/server → server}/endpoint/virtual_connections_endpoint.py +0 -0
  111. {tableauserverclient/server → server}/endpoint/webhooks_endpoint.py +0 -0
  112. {tableauserverclient/server → server}/exceptions.py +0 -0
  113. {tableauserverclient/server → server}/filter.py +0 -0
  114. {tableauserverclient/server → server}/pager.py +0 -0
  115. {tableauserverclient/server → server}/query.py +0 -0
  116. {tableauserverclient/server → server}/sort.py +0 -0
  117. {tableauserverclient-0.38.dist-info → tableauserverclient-0.39.dist-info}/licenses/LICENSE +0 -0
@@ -1,145 +0,0 @@
1
- from tableauserverclient.bin._version import get_versions
2
- from tableauserverclient.namespace import NEW_NAMESPACE as DEFAULT_NAMESPACE
3
- from tableauserverclient.models import (
4
- BackgroundJobItem,
5
- ColumnItem,
6
- ConnectionCredentials,
7
- ConnectionItem,
8
- CustomViewItem,
9
- DQWItem,
10
- DailyInterval,
11
- DataAlertItem,
12
- DatabaseItem,
13
- DataFreshnessPolicyItem,
14
- DatasourceItem,
15
- FavoriteItem,
16
- FlowItem,
17
- FlowRunItem,
18
- FileuploadItem,
19
- GroupItem,
20
- GroupSetItem,
21
- HourlyInterval,
22
- IntervalItem,
23
- JobItem,
24
- JWTAuth,
25
- LinkedTaskItem,
26
- LinkedTaskStepItem,
27
- LinkedTaskFlowRunItem,
28
- LocationItem,
29
- MetricItem,
30
- MonthlyInterval,
31
- PaginationItem,
32
- Permission,
33
- PermissionsRule,
34
- PersonalAccessTokenAuth,
35
- ProjectItem,
36
- Resource,
37
- RevisionItem,
38
- ScheduleItem,
39
- SiteAuthConfiguration,
40
- SiteItem,
41
- ServerInfoItem,
42
- SubscriptionItem,
43
- TableauItem,
44
- TableItem,
45
- TableauAuth,
46
- Target,
47
- TaskItem,
48
- UserItem,
49
- ViewItem,
50
- VirtualConnectionItem,
51
- WebhookItem,
52
- WeeklyInterval,
53
- WorkbookItem,
54
- )
55
-
56
- from tableauserverclient.server import (
57
- CSVRequestOptions,
58
- ExcelRequestOptions,
59
- ImageRequestOptions,
60
- PDFRequestOptions,
61
- PPTXRequestOptions,
62
- RequestOptions,
63
- MissingRequiredFieldError,
64
- FailedSignInError,
65
- NotSignedInError,
66
- ServerResponseError,
67
- Filter,
68
- Pager,
69
- Server,
70
- Sort,
71
- )
72
-
73
- __all__ = [
74
- "BackgroundJobItem",
75
- "BackgroundJobItem",
76
- "ColumnItem",
77
- "ConnectionCredentials",
78
- "ConnectionItem",
79
- "CSVRequestOptions",
80
- "CustomViewItem",
81
- "DailyInterval",
82
- "DataAlertItem",
83
- "DatabaseItem",
84
- "DataFreshnessPolicyItem",
85
- "DatasourceItem",
86
- "DEFAULT_NAMESPACE",
87
- "DQWItem",
88
- "ExcelRequestOptions",
89
- "FailedSignInError",
90
- "FavoriteItem",
91
- "FileuploadItem",
92
- "Filter",
93
- "FlowItem",
94
- "FlowRunItem",
95
- "get_versions",
96
- "GroupItem",
97
- "GroupSetItem",
98
- "HourlyInterval",
99
- "ImageRequestOptions",
100
- "IntervalItem",
101
- "JobItem",
102
- "JWTAuth",
103
- "LinkedTaskFlowRunItem",
104
- "LinkedTaskItem",
105
- "LinkedTaskStepItem",
106
- "LocationItem",
107
- "MetricItem",
108
- "MissingRequiredFieldError",
109
- "MonthlyInterval",
110
- "NotSignedInError",
111
- "Pager",
112
- "PaginationItem",
113
- "PDFRequestOptions",
114
- "PPTXRequestOptions",
115
- "Permission",
116
- "PermissionsRule",
117
- "PersonalAccessTokenAuth",
118
- "ProjectItem",
119
- "RequestOptions",
120
- "Resource",
121
- "RevisionItem",
122
- "ScheduleItem",
123
- "Server",
124
- "ServerInfoItem",
125
- "ServerResponseError",
126
- "SiteItem",
127
- "SiteAuthConfiguration",
128
- "Sort",
129
- "SubscriptionItem",
130
- "TableauAuth",
131
- "TableauItem",
132
- "TableItem",
133
- "Target",
134
- "TaskItem",
135
- "UserItem",
136
- "ViewItem",
137
- "VirtualConnectionItem",
138
- "WebhookItem",
139
- "WeeklyInterval",
140
- "WorkbookItem",
141
- ]
142
-
143
- from .bin import _version
144
-
145
- __version__ = _version.get_versions()["version"]
@@ -1,27 +0,0 @@
1
- import os
2
-
3
- ALLOWED_FILE_EXTENSIONS = ["tds", "tdsx", "tde", "hyper", "parquet"]
4
-
5
- BYTES_PER_MB = 1024 * 1024
6
-
7
- DELAY_SLEEP_SECONDS = 0.1
8
-
9
-
10
- class Config:
11
- # The maximum size of a file that can be published in a single request is 64MB
12
- @property
13
- def FILESIZE_LIMIT_MB(self):
14
- return min(int(os.getenv("TSC_FILESIZE_LIMIT_MB", 64)), 64)
15
-
16
- # For when a datasource is over 64MB, break it into 5MB(standard chunk size) chunks
17
- @property
18
- def CHUNK_SIZE_MB(self):
19
- return int(os.getenv("TSC_CHUNK_SIZE_MB", 5 * 10)) # 5MB felt too slow, upped it to 50
20
-
21
- # Default page size
22
- @property
23
- def PAGE_SIZE(self):
24
- return int(os.getenv("TSC_PAGE_SIZE", 100))
25
-
26
-
27
- config = Config()
@@ -1,45 +0,0 @@
1
- import datetime
2
-
3
-
4
- ZERO = datetime.timedelta(0)
5
- HOUR = datetime.timedelta(hours=1)
6
-
7
-
8
- def timestamp():
9
- return datetime.datetime.now().strftime("%H:%M:%S")
10
-
11
-
12
- # This class is a concrete implementation of the abstract base class tzinfo
13
- # docs: https://docs.python.org/2.3/lib/datetime-tzinfo.html
14
- class UTC(datetime.tzinfo):
15
- """UTC"""
16
-
17
- def utcoffset(self, dt):
18
- return ZERO
19
-
20
- def tzname(self, dt):
21
- return "UTC"
22
-
23
- def dst(self, dt):
24
- return ZERO
25
-
26
-
27
- utc = UTC()
28
- TABLEAU_DATE_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
29
-
30
-
31
- def parse_datetime(date):
32
- if date is None:
33
- return None
34
-
35
- try:
36
- return datetime.datetime.strptime(date, TABLEAU_DATE_FORMAT).replace(tzinfo=utc)
37
- except ValueError:
38
- return None
39
-
40
-
41
- def format_datetime(date):
42
- if date is None:
43
- return None
44
-
45
- return date.astimezone(tz=utc).strftime(TABLEAU_DATE_FORMAT)
@@ -1,30 +0,0 @@
1
- import time
2
-
3
- # Polling for server-side events (such as job completion) uses exponential backoff for the sleep intervals between polls
4
- ASYNC_POLL_MIN_INTERVAL = 0.5
5
- ASYNC_POLL_MAX_INTERVAL = 30
6
- ASYNC_POLL_BACKOFF_FACTOR = 1.4
7
-
8
-
9
- class ExponentialBackoffTimer:
10
- def __init__(self, *, timeout=None):
11
- self.start_time = time.time()
12
- self.timeout = timeout
13
- self.current_sleep_interval = ASYNC_POLL_MIN_INTERVAL
14
-
15
- def sleep(self):
16
- max_sleep_time = ASYNC_POLL_MAX_INTERVAL
17
- if self.timeout is not None:
18
- elapsed = time.time() - self.start_time
19
- if elapsed >= self.timeout:
20
- raise TimeoutError(f"Timeout after {elapsed} seconds waiting for asynchronous event")
21
- remaining_time = self.timeout - elapsed
22
- # Usually, we would sleep for `ASYNC_POLL_MAX_INTERVAL`, but we don't want to sleep over the timeout
23
- max_sleep_time = min(ASYNC_POLL_MAX_INTERVAL, remaining_time)
24
- # We want to sleep at least for `ASYNC_POLL_MIN_INTERVAL`. This is important to ensure that, as we get
25
- # closer to the timeout, we don't accidentally wake up multiple times and hit the server in rapid succession
26
- # due to waking up to early from the `sleep`.
27
- max_sleep_time = max(max_sleep_time, ASYNC_POLL_MIN_INTERVAL)
28
-
29
- time.sleep(min(self.current_sleep_interval, max_sleep_time))
30
- self.current_sleep_interval *= ASYNC_POLL_BACKOFF_FACTOR
@@ -1,63 +0,0 @@
1
- import os
2
-
3
- ALLOWED_SPECIAL = (" ", ".", "_", "-")
4
-
5
-
6
- def to_filename(string_to_sanitize):
7
- sanitized = (c for c in string_to_sanitize if c.isalnum() or c in ALLOWED_SPECIAL)
8
- return "".join(sanitized)
9
-
10
-
11
- def make_download_path(filepath, filename):
12
- download_path = None
13
-
14
- if filepath is None:
15
- download_path = filename
16
-
17
- elif os.path.isdir(filepath):
18
- download_path = os.path.join(filepath, filename)
19
-
20
- else:
21
- download_path = filepath + os.path.splitext(filename)[1]
22
-
23
- return download_path
24
-
25
-
26
- def get_file_object_size(file):
27
- # Returns the size of a file object
28
- file.seek(0, os.SEEK_END)
29
- file_size = file.tell()
30
- file.seek(0)
31
- return file_size
32
-
33
-
34
- def get_file_type(file):
35
- # Tableau workbooks (twb) and data sources (tds) are both stored as xml files.
36
- # Packaged workbooks (twbx) and data sources (tdsx) are zip files
37
- # containing original files accompanied with supporting local files.
38
-
39
- # This reference lists magic file signatures: https://www.garykessler.net/library/file_sigs.html
40
- MAGIC_BYTES = {
41
- "zip": bytes.fromhex("504b0304"),
42
- "tde": bytes.fromhex("20020162"),
43
- "xml": bytes.fromhex("3c3f786d6c20"),
44
- "hyper": bytes.fromhex("487970657208000001000000"),
45
- }
46
-
47
- # Peek first bytes of a file
48
- first_bytes = file.read(32)
49
-
50
- file_type = None
51
- for ft, signature in MAGIC_BYTES.items():
52
- if first_bytes.startswith(signature):
53
- file_type = ft
54
- break
55
-
56
- # Return pointer back to start
57
- file.seek(0)
58
-
59
- if file_type is None:
60
- error = "Unknown file type!"
61
- raise ValueError(error)
62
-
63
- return file_type
@@ -1,37 +0,0 @@
1
- import re
2
-
3
- from defusedxml.ElementTree import fromstring
4
-
5
- OLD_NAMESPACE = "http://tableausoftware.com/api"
6
- NEW_NAMESPACE = "http://tableau.com/api"
7
- NAMESPACE_RE = re.compile(r"\{(.*?)\}")
8
-
9
-
10
- class UnknownNamespaceError(Exception):
11
- pass
12
-
13
-
14
- class Namespace:
15
- def __init__(self):
16
- self._namespace = {"t": NEW_NAMESPACE}
17
- self._detected = False
18
-
19
- def __call__(self):
20
- return self._namespace
21
-
22
- def detect(self, xml):
23
- if self._detected:
24
- return
25
-
26
- if not xml.startswith(b"<?xml"):
27
- return # Not an xml file, don't detect anything
28
-
29
- root = fromstring(xml)
30
- matches = NAMESPACE_RE.match(root.tag)
31
- if matches:
32
- detected_ns = matches.group(1)
33
- if detected_ns in (OLD_NAMESPACE, NEW_NAMESPACE):
34
- self._namespace = {"t": detected_ns}
35
- self._detected = True
36
- else:
37
- raise UnknownNamespaceError(detected_ns)
File without changes
@@ -1,108 +0,0 @@
1
- tableauserverclient/__init__.py,sha256=MF3FF8PVVTOMt6XisyADxGtHwT2ZGYqzD0QYbKL3Fo0,2958
2
- tableauserverclient/config.py,sha256=LcWVmZjkYMh1cKCKZm3VZItgKOoSLz1ai4PnVgbAtDA,713
3
- tableauserverclient/datetime_helpers.py,sha256=_-gWz5I2_KHT5AzW_boD8meH6loTTKdK-_62h1MA6ko,884
4
- tableauserverclient/exponential_backoff.py,sha256=HtAfbbVnYtiOe2_ZzKqZmsml40EDZBaC3bttif5qeG8,1474
5
- tableauserverclient/filesys_helpers.py,sha256=hosTm9fpc9B9_VCDcAuyHA0A-f-MWs9_2utyRweuZ5I,1667
6
- tableauserverclient/namespace.py,sha256=Zh6QtxNmqPkjRMsefHHX-ycS4r-egnrJ4-hdHvldBHw,963
7
- tableauserverclient/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- tableauserverclient/bin/_version.py,sha256=E7k74Qr0m6ibFzFeSwltkPyK8dAWvX_lwhGIx-whZy4,496
9
- tableauserverclient/helpers/__init__.py,sha256=llpqF9zV5dsP5hQt8dyop33Op5OzGmxW0BZibaSlCcM,23
10
- tableauserverclient/helpers/headers.py,sha256=Pg-ZWSgV2Yp813BV1Tzo8F2Hn4P01zscla2RRM4yqNk,411
11
- tableauserverclient/helpers/logging.py,sha256=5q_oR3wERHVXFXY6XDnLYML5-HdAPJTmqhH9IZg4VfY,113
12
- tableauserverclient/helpers/strings.py,sha256=7MvaS9haJ5hpdv4NPQ11gRj94zIgbDmujFPD_GnZPJI,2013
13
- tableauserverclient/models/__init__.py,sha256=Udhoop0M75G6NMWyPzgH6Mr2PBH5H77jF359P5y4DUM,4272
14
- tableauserverclient/models/column_item.py,sha256=yUFzXNcnUPVo2imrhEBS4fMVAR5j2ZzksOk5t9XYW5s,1964
15
- tableauserverclient/models/connection_credentials.py,sha256=CQ8FkkHW9MeTw8uArNhrU5mowtryWUddgEgEliqh3ys,2066
16
- tableauserverclient/models/connection_item.py,sha256=LwZza3I5Zwx04BcLGWQXRcuZq5X_X86DDse6RMmrcr8,6002
17
- tableauserverclient/models/custom_view_item.py,sha256=JZyq7jkt9WH-24eOV4PO2uGJxaSZ-5K05jL4UoZ8kYs,7771
18
- tableauserverclient/models/data_acceleration_report_item.py,sha256=HFZROetfOWh-hMS48xBEHqYOViINHZR-EpcrP45_8AI,3386
19
- tableauserverclient/models/data_alert_item.py,sha256=VZtRR-kqojq-mkrTgvay4WkPawj3-4jbSc0wBijmJhk,6444
20
- tableauserverclient/models/data_freshness_policy_item.py,sha256=UdaEmwVL_q364Do_2dOnkCSX-oKnvjKfsYzGSaJIQFs,7618
21
- tableauserverclient/models/database_item.py,sha256=lWxmmMpPeVxzizVAsVkc6Ps2I-j-0KJAJZto8qShrYU,8223
22
- tableauserverclient/models/datasource_item.py,sha256=1cQrn_Mm46aPq-RPJD5LRBq-gr2zbgXs5tLG8wG7oP8,19689
23
- tableauserverclient/models/dqw_item.py,sha256=87oTc7icrQst_DSaTqoVR965YEckg5dk6osa51BrCAk,3710
24
- tableauserverclient/models/exceptions.py,sha256=pQu5DS4jNMT9A0wEBWv2vANAQU1vgNpFatVr8sGE4zk,105
25
- tableauserverclient/models/extract_item.py,sha256=2qDyNrAanbw1gK6qE2L7RwQFsIg_59unUx8rbLWrTmg,2691
26
- tableauserverclient/models/favorites_item.py,sha256=JxHfy38xdRYol2KM_8_A7Ng59cZunkhTNcpxO670k08,3294
27
- tableauserverclient/models/fileupload_item.py,sha256=N5M0jtlFj_PFh3jlp2AbcYOwCwdnBCk_L64xe3Z4ves,742
28
- tableauserverclient/models/flow_item.py,sha256=aXAv7yIWdpISBWARBkc8aHUmMmtk4z2ZFhWvVT0gCkg,8664
29
- tableauserverclient/models/flow_run_item.py,sha256=nf_b6KRwNevwZRsPoMh8dLzdONUMWY2wipWEMdY9SN4,3113
30
- tableauserverclient/models/group_item.py,sha256=qirnux5rrH_-Ih6ZyXceSz7ylXtRinY7FgN_Zmkhc7U,5241
31
- tableauserverclient/models/groupset_item.py,sha256=gxxyzviE5B8zr2sKJteIDKtYTPYKsGd-qMcrjEY2uVU,1885
32
- tableauserverclient/models/interval_item.py,sha256=zAP6gLjvFSKgEtuI2On_RRRSq240TJdCiRZaU4U2Kkg,10962
33
- tableauserverclient/models/job_item.py,sha256=Q7tTKXEiW-5VJsLmnAq6auP0jvmbbImmqw_nx1kiXtM,11512
34
- tableauserverclient/models/linked_tasks_item.py,sha256=TYkNvmJfKlZ30OST8w9GUobboFAH5ftFKjXdWWAtR24,3806
35
- tableauserverclient/models/location_item.py,sha256=8pVxiSoySTAQOF9QDe0KiHMUp0aiFG-sZ2cB1u8oAEg,1287
36
- tableauserverclient/models/metric_item.py,sha256=D3atzbr3jtQUsVsqYHfz-v3yRP3qruRN5jRsv_-yRQ0,5378
37
- tableauserverclient/models/pagination_item.py,sha256=55Ap_9pJxq8plWQO1Js3Jp6KFidN3TQsL5LM2-yZGDo,1424
38
- tableauserverclient/models/permissions_item.py,sha256=CWf1Q4x7U4QQWQ1VUWgDzaE7mhriHblG1MJAc6EKJHM,6149
39
- tableauserverclient/models/project_item.py,sha256=5xoKbLUhpQ21i0iRG1MVbYLa5wetwTAmZ2IkzwmFsO4,11687
40
- tableauserverclient/models/property_decorators.py,sha256=v2cTqiW5iZXoOyu6RYg3X6Ly--8sozjWOcKCTLi99Nc,4645
41
- tableauserverclient/models/reference_item.py,sha256=R4Tr7qfVdnGcq_ac4hr0yhAjBOkqFZEW-4NGMUYaf9w,733
42
- tableauserverclient/models/revision_item.py,sha256=5ghmnwhUcCOWwZdApzgV_uM3sqdoG_gtsJwUQwfKITo,2773
43
- tableauserverclient/models/schedule_item.py,sha256=tiIkTj3JIsozCqIkMLzjM11FZMAWJ3vrNgySGPbuido,13490
44
- tableauserverclient/models/server_info_item.py,sha256=55wTG_31o-WwqgBrbwpgMpq_by10iM6BXpmdAZ3TO90,2631
45
- tableauserverclient/models/site_item.py,sha256=UjSl413kYwNJEVrqH3Fb3Y63IiCXICGYuRQuXgTyS5E,46219
46
- tableauserverclient/models/subscription_item.py,sha256=ujaQQIo_ln3pnm0Th2IdcGCp_cl6WxvEMPgeZbwZtFc,4724
47
- tableauserverclient/models/table_item.py,sha256=4CZ2R0asNz8iINn3FKKQzjpwt-5lBAvfm0fHKmz5gcw,4752
48
- tableauserverclient/models/tableau_auth.py,sha256=atmXdAsA5LrrLHEzrHJQPLYETC1iKyxFqPSwIk-vacI,8218
49
- tableauserverclient/models/tableau_types.py,sha256=bukzI490GWpebGv9ZiCuSqioqIZm9ao9Yr2GGrmM8_A,1420
50
- tableauserverclient/models/tag_item.py,sha256=K2EVEy1EDdr0yLr4wBvGr-p9gIAFVsOCv80b-AFPFLk,588
51
- tableauserverclient/models/target.py,sha256=dVc1SHwo9ZASR8250MhAPODXX_G5UqA4BnK8hykRE6E,263
52
- tableauserverclient/models/task_item.py,sha256=l4t4COw2LfdlYmJpzUSgwGven_NSZj2r3PUJZkqvCus,4555
53
- tableauserverclient/models/user_item.py,sha256=SsrbSA62oD99agQSzNv-q5Yjqd7UEQfmAD8j78bjrDU,19454
54
- tableauserverclient/models/view_item.py,sha256=-JxiwRFqBo7DS3dvwk4rxRhc25WH-Pgf8rBaLyFQOzE,12451
55
- tableauserverclient/models/virtual_connection_item.py,sha256=TvX7MId7WSg4IZE41XAMl1l3Ibu8kTUR1xr26Cqtyeo,3357
56
- tableauserverclient/models/webhook_item.py,sha256=r37fHY3_uhDhxupHfMSvB4I2aUjy3qQ2FOLQjAcNUUk,3994
57
- tableauserverclient/models/workbook_item.py,sha256=8HMO7MGtclG4vsnP-rUCyZE5PczbXAm1fTG-9wRUlKI,22384
58
- tableauserverclient/server/__init__.py,sha256=77E-3LseLd9gHeRgKPnpZTNMQySgYiwst33AsReol-k,1940
59
- tableauserverclient/server/exceptions.py,sha256=l-O4lcoEeXJC7fLWUanIcZM_Mf8m54uK3NQuKNj3RCg,183
60
- tableauserverclient/server/filter.py,sha256=Z7O6A175bBSmcponLs0Enh5R5Gp2puVRGfOMk-V395w,1096
61
- tableauserverclient/server/pager.py,sha256=IESvCba7WZO3O9VBcKlJ6ricVDgro0gKuUQyJnOCUws,3497
62
- tableauserverclient/server/query.py,sha256=dY_y20DOBOFwydIpLcWLK39s1lVmDPxhX5x6hVxeoL0,10529
63
- tableauserverclient/server/request_factory.py,sha256=O6jqmDXUN-TnyieSvANhHyLtNxV49SzWnHdACmDRCTY,72994
64
- tableauserverclient/server/request_options.py,sha256=gSaVE0LVQNNDgJFB9_WNOjjdyAl_i0Y6cwyJhXHXYkc,19889
65
- tableauserverclient/server/server.py,sha256=BemJ2L0gl34JpMZL43nPQj5rulYWA1MdaaUh8DiVhKI,13363
66
- tableauserverclient/server/sort.py,sha256=wjnlt7rlmLvQjM_XpgD8N8Hlg0zVvLOV7k_dAs1DmHY,628
67
- tableauserverclient/server/endpoint/__init__.py,sha256=MpttkNENWAiXS2QigwZMfWG6PnsB05QSFK4-OIR3CaQ,3101
68
- tableauserverclient/server/endpoint/auth_endpoint.py,sha256=8N3_OUSwYm4KCvwDJHGmH9i2OqzH70PLP0-rT-sKYVo,7177
69
- tableauserverclient/server/endpoint/custom_views_endpoint.py,sha256=se-CZ9BF8Cf_quT_3BbrO9lwK7E8hHbCoMYq-2IZMM8,14515
70
- tableauserverclient/server/endpoint/data_acceleration_report_endpoint.py,sha256=he-MVqCvAQo8--icEKFoIV2KUP6Z1s_PJ2uZ8Xpj2f8,1130
71
- tableauserverclient/server/endpoint/data_alert_endpoint.py,sha256=ZNotgG3hBpR7fo8eDTXx_gSppF2n25GQ3udwF3MKFLk,5203
72
- tableauserverclient/server/endpoint/databases_endpoint.py,sha256=vojSCB6DQ665Z0X7h5TQg5wflU_WUtd4pgcjsda7JdU,8689
73
- tableauserverclient/server/endpoint/datasources_endpoint.py,sha256=n6R5Qdfyc_nOGzhG_zcVsEtaWKZ5dRTopBM36fVTYvg,41838
74
- tableauserverclient/server/endpoint/default_permissions_endpoint.py,sha256=bZlhDqu6jFyC4vbrdC3Nn1cWRJWRz0mhxco9hRUouJA,4327
75
- tableauserverclient/server/endpoint/dqw_endpoint.py,sha256=bfgA7sRGQajR67xcRS9mIF7yKlJmjjFyN-hBxwZ5wkU,2626
76
- tableauserverclient/server/endpoint/endpoint.py,sha256=035rsaaUoQP0oYtaRhtIMHs9bwMeFCt2u-gn5asOK7o,15309
77
- tableauserverclient/server/endpoint/exceptions.py,sha256=ifkRatvvqG5awY73BzwALlby3dYYKr_8leUOmpeZS0Y,2919
78
- tableauserverclient/server/endpoint/favorites_endpoint.py,sha256=ZMui0KQCSGRBlUrem519Y5_gBpngN7wtDWo_EvEUMEk,6340
79
- tableauserverclient/server/endpoint/fileuploads_endpoint.py,sha256=e3qIw6lJJG4Y8RHG26psMjjETovpfrBzmFjeYeJll8s,2410
80
- tableauserverclient/server/endpoint/flow_runs_endpoint.py,sha256=HIVuTi4pXIqog16K_3Zzu1LC96TR_pZlAjxRKoJrJ_g,4957
81
- tableauserverclient/server/endpoint/flow_task_endpoint.py,sha256=4D7tEYow7lqkCuazXUrUyIH_y_PQMTehmeIi-zSIMXo,1078
82
- tableauserverclient/server/endpoint/flows_endpoint.py,sha256=i0nc9JeBzJ7A-kymGMubV8khT-NU3oxlvB7SHd_bddA,23650
83
- tableauserverclient/server/endpoint/groups_endpoint.py,sha256=5ZhKJeKT3GoM2olqJYJggdiVYQ9BdcEJCIqkx-tZqxo,18745
84
- tableauserverclient/server/endpoint/groupsets_endpoint.py,sha256=Kcrrd0NbduwIhAtGkG-EMf38qcCM74EnCybAs24TFnM,5577
85
- tableauserverclient/server/endpoint/jobs_endpoint.py,sha256=rhR8tD89U5ha-g5QhLlGXurTF77mLQREnd7k208EHxA,10387
86
- tableauserverclient/server/endpoint/linked_tasks_endpoint.py,sha256=tMZqVPWPZvYawaXLJGVV9scmWPu1rdCxz-eWZv1WbPk,2262
87
- tableauserverclient/server/endpoint/metadata_endpoint.py,sha256=sg0Yehj2f0wlrJMkVjzNdNxNEhSeNbZIkio3eQamOVk,5228
88
- tableauserverclient/server/endpoint/metrics_endpoint.py,sha256=p9F_tbUela1sb3i9n67Tr9zsPRmsjSAigC6EqLwZHqE,3175
89
- tableauserverclient/server/endpoint/permissions_endpoint.py,sha256=tXX_KSanbxUeR-L4UdI_jphko8dD_fZsXVhQayQL3JA,3719
90
- tableauserverclient/server/endpoint/projects_endpoint.py,sha256=aIYW2NWZnWgK2PXHcBgHJwGxv6Ak915J-1wmPD1FiFY,30603
91
- tableauserverclient/server/endpoint/resource_tagger.py,sha256=eKekflXzLjx_zDOLgYkTIusRO8vsFus1LvLIf0LOwtQ,6661
92
- tableauserverclient/server/endpoint/schedules_endpoint.py,sha256=6CnlvC2OIMRTUM1JYYgg5WWVG68vnw2Cfui-O-vkYj4,11032
93
- tableauserverclient/server/endpoint/server_info_endpoint.py,sha256=9UcYP3td22S_Kwabu-RWc-Pn3lFrIERVlzVpl4ErP_I,2649
94
- tableauserverclient/server/endpoint/sites_endpoint.py,sha256=Fh8ppL00IVI1YpXyOXCCc5fIc_r_TC1o8GCgYD_gOV4,14778
95
- tableauserverclient/server/endpoint/subscriptions_endpoint.py,sha256=21oZ6Q14AL8p2ZHyfREpbnPU6Vj4Xh97o1K9hmKRJ-I,3187
96
- tableauserverclient/server/endpoint/tables_endpoint.py,sha256=PcNqk66aJ_rsFSHOJ1FCB_G5GlvGFIzr66G5aO2aIRo,9742
97
- tableauserverclient/server/endpoint/tasks_endpoint.py,sha256=5VHGe2NSgr40BKPPOm9nVrdZGrG3Sf0ri_CNqsv0CpQ,6304
98
- tableauserverclient/server/endpoint/users_endpoint.py,sha256=M8rtc0UOgJTpOudZg9XhPWpSNX5HOrNGeYAdYTfzYrs,20414
99
- tableauserverclient/server/endpoint/views_endpoint.py,sha256=4wTqjo1MyB6kkVB0W9QSajz8eqwO7vaZCcD2y6hN4Zo,17859
100
- tableauserverclient/server/endpoint/virtual_connections_endpoint.py,sha256=K5R86aIm4hZeYw3OUOlKv-zTmsWa3np1iuV_h5iPvt0,8458
101
- tableauserverclient/server/endpoint/webhooks_endpoint.py,sha256=nmEjKdbntwBg-0XAP2TluOv2v8usqxXg7sO8ogS5rDI,4923
102
- tableauserverclient/server/endpoint/workbooks_endpoint.py,sha256=W6o64Rec7i3dBzyR8TYntgWzryXbxFAZ_xa37edyzqY,43910
103
- tableauserverclient-0.38.dist-info/licenses/LICENSE,sha256=MMkY7MguOb4L-WCmmqrVcwg2iwSGaz-RfAMFvXRXwsQ,1074
104
- tableauserverclient-0.38.dist-info/licenses/LICENSE.versioneer,sha256=OYaGozOXk7bUNSm1z577iDYpti8a40XIqqR4lyQ47D8,334
105
- tableauserverclient-0.38.dist-info/METADATA,sha256=Mqmu3eGpJkEDtUCXPioiJvuo5yHjUv77jwF_xGm48go,4351
106
- tableauserverclient-0.38.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
107
- tableauserverclient-0.38.dist-info/top_level.txt,sha256=kBnL39G2RlGqxJSsShDBWG4WZ3NFcWJkv1EGiOfZh4Q,20
108
- tableauserverclient-0.38.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- ## License
2
-
3
- To make Versioneer easier to embed, all its code is dedicated to the public
4
- domain. The `_version.py` that it creates is also in the public domain.
5
- Specifically, both are released under the Creative Commons "Public Domain
6
- Dedication" license (CC0-1.0), as described in
7
- https://creativecommons.org/publicdomain/zero/1.0/ .
@@ -1 +0,0 @@
1
- tableauserverclient
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes