htag-sdk 0.1.0__tar.gz
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.
- htag_sdk-0.1.0/.gitignore +371 -0
- htag_sdk-0.1.0/PKG-INFO +429 -0
- htag_sdk-0.1.0/README.md +403 -0
- htag_sdk-0.1.0/pyproject.toml +50 -0
- htag_sdk-0.1.0/src/htag/__init__.py +108 -0
- htag_sdk-0.1.0/src/htag/_async_client.py +85 -0
- htag_sdk-0.1.0/src/htag/_base.py +356 -0
- htag_sdk-0.1.0/src/htag/_client.py +88 -0
- htag_sdk-0.1.0/src/htag/_exceptions.py +107 -0
- htag_sdk-0.1.0/src/htag/_types.py +20 -0
- htag_sdk-0.1.0/src/htag/address/__init__.py +25 -0
- htag_sdk-0.1.0/src/htag/address/async_client.py +109 -0
- htag_sdk-0.1.0/src/htag/address/client.py +119 -0
- htag_sdk-0.1.0/src/htag/address/models.py +112 -0
- htag_sdk-0.1.0/src/htag/markets/__init__.py +39 -0
- htag_sdk-0.1.0/src/htag/markets/async_client.py +410 -0
- htag_sdk-0.1.0/src/htag/markets/client.py +558 -0
- htag_sdk-0.1.0/src/htag/markets/models.py +340 -0
- htag_sdk-0.1.0/src/htag/property/__init__.py +15 -0
- htag_sdk-0.1.0/src/htag/property/async_client.py +101 -0
- htag_sdk-0.1.0/src/htag/property/client.py +101 -0
- htag_sdk-0.1.0/src/htag/property/models.py +37 -0
- htag_sdk-0.1.0/src/htag/py.typed +0 -0
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Any subdirectory specific .gitignore should be placed in the right directories
|
|
3
|
+
# e.g. Language specific excludes, etc...
|
|
4
|
+
#
|
|
5
|
+
# The following are developer environment oriented... Editors, OSs, etc..
|
|
6
|
+
#
|
|
7
|
+
# Created by https://www.gitignore.io/api/vim,git,code,linux,macos,emacs,windows
|
|
8
|
+
# Edit at https://www.gitignore.io/?templates=vim,git,code,linux,macos,emacs,windows
|
|
9
|
+
|
|
10
|
+
### Code ###
|
|
11
|
+
.vscode
|
|
12
|
+
.vscode/*
|
|
13
|
+
!.vscode/settings.json
|
|
14
|
+
!.vscode/tasks.json
|
|
15
|
+
!.vscode/launch.json
|
|
16
|
+
!.vscode/extensions.json
|
|
17
|
+
*.vsix
|
|
18
|
+
|
|
19
|
+
### Emacs ###
|
|
20
|
+
# -*- mode: gitignore; -*-
|
|
21
|
+
*~
|
|
22
|
+
\#*\#
|
|
23
|
+
/.emacs.desktop
|
|
24
|
+
/.emacs.desktop.lock
|
|
25
|
+
*.elc
|
|
26
|
+
auto-save-list
|
|
27
|
+
tramp
|
|
28
|
+
.\#*
|
|
29
|
+
|
|
30
|
+
# Org-mode
|
|
31
|
+
.org-id-locations
|
|
32
|
+
*_archive
|
|
33
|
+
|
|
34
|
+
# flymake-mode
|
|
35
|
+
*_flymake.*
|
|
36
|
+
|
|
37
|
+
# eshell files
|
|
38
|
+
/eshell/history
|
|
39
|
+
/eshell/lastdir
|
|
40
|
+
|
|
41
|
+
# elpa packages
|
|
42
|
+
/elpa/
|
|
43
|
+
|
|
44
|
+
# reftex files
|
|
45
|
+
*.rel
|
|
46
|
+
|
|
47
|
+
# AUCTeX auto folder
|
|
48
|
+
/auto/
|
|
49
|
+
|
|
50
|
+
# cask packages
|
|
51
|
+
.cask/
|
|
52
|
+
dist/
|
|
53
|
+
|
|
54
|
+
# Flycheck
|
|
55
|
+
flycheck_*.el
|
|
56
|
+
|
|
57
|
+
# server auth directory
|
|
58
|
+
/server/
|
|
59
|
+
|
|
60
|
+
# projectiles files
|
|
61
|
+
.projectile
|
|
62
|
+
|
|
63
|
+
# directory configuration
|
|
64
|
+
.dir-locals.el
|
|
65
|
+
|
|
66
|
+
# generated logging config file
|
|
67
|
+
starc_logs_config.json
|
|
68
|
+
|
|
69
|
+
# network security
|
|
70
|
+
/network-security.data
|
|
71
|
+
|
|
72
|
+
### JetBrains IDEs ###
|
|
73
|
+
**/.idea/*
|
|
74
|
+
|
|
75
|
+
### Git ###
|
|
76
|
+
# Created by git for backups. To disable backups in Git:
|
|
77
|
+
# $ git config --global mergetool.keepBackup false
|
|
78
|
+
*.orig
|
|
79
|
+
|
|
80
|
+
# Created by git when using merge tools for conflicts
|
|
81
|
+
*.BACKUP.*
|
|
82
|
+
*.BASE.*
|
|
83
|
+
*.LOCAL.*
|
|
84
|
+
*.REMOTE.*
|
|
85
|
+
*_BACKUP_*.txt
|
|
86
|
+
*_BASE_*.txt
|
|
87
|
+
*_LOCAL_*.txt
|
|
88
|
+
*_REMOTE_*.txt
|
|
89
|
+
|
|
90
|
+
### Linux ###
|
|
91
|
+
|
|
92
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
93
|
+
.fuse_hidden*
|
|
94
|
+
|
|
95
|
+
# KDE directory preferences
|
|
96
|
+
.directory
|
|
97
|
+
|
|
98
|
+
# Linux trash folder which might appear on any partition or disk
|
|
99
|
+
.Trash-*
|
|
100
|
+
|
|
101
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
|
102
|
+
.nfs*
|
|
103
|
+
|
|
104
|
+
### macOS ###
|
|
105
|
+
# General
|
|
106
|
+
.DS_Store
|
|
107
|
+
.AppleDouble
|
|
108
|
+
.LSOverride
|
|
109
|
+
|
|
110
|
+
# Icon must end with two \r
|
|
111
|
+
Icon
|
|
112
|
+
|
|
113
|
+
# Thumbnails
|
|
114
|
+
._*
|
|
115
|
+
|
|
116
|
+
# Files that might appear in the root of a volume
|
|
117
|
+
.DocumentRevisions-V100
|
|
118
|
+
.fseventsd
|
|
119
|
+
.Spotlight-V100
|
|
120
|
+
.TemporaryItems
|
|
121
|
+
.Trashes
|
|
122
|
+
.VolumeIcon.icns
|
|
123
|
+
.com.apple.timemachine.donotpresent
|
|
124
|
+
|
|
125
|
+
# Directories potentially created on remote AFP share
|
|
126
|
+
.AppleDB
|
|
127
|
+
.AppleDesktop
|
|
128
|
+
Network Trash Folder
|
|
129
|
+
Temporary Items
|
|
130
|
+
.apdisk
|
|
131
|
+
|
|
132
|
+
### Vim ###
|
|
133
|
+
# Swap
|
|
134
|
+
[._]*.s[a-v][a-z]
|
|
135
|
+
[._]*.sw[a-p]
|
|
136
|
+
[._]s[a-rt-v][a-z]
|
|
137
|
+
[._]ss[a-gi-z]
|
|
138
|
+
[._]sw[a-p]
|
|
139
|
+
|
|
140
|
+
# Session
|
|
141
|
+
Session.vim
|
|
142
|
+
Sessionx.vim
|
|
143
|
+
|
|
144
|
+
# Temporary
|
|
145
|
+
.netrwhist
|
|
146
|
+
# Auto-generated tag files
|
|
147
|
+
tags
|
|
148
|
+
# Persistent undo
|
|
149
|
+
[._]*.un~
|
|
150
|
+
|
|
151
|
+
### Windows ###
|
|
152
|
+
# Windows thumbnail cache files
|
|
153
|
+
Thumbs.db
|
|
154
|
+
Thumbs.db:encryptable
|
|
155
|
+
ehthumbs.db
|
|
156
|
+
ehthumbs_vista.db
|
|
157
|
+
|
|
158
|
+
# Dump file
|
|
159
|
+
*.stackdump
|
|
160
|
+
|
|
161
|
+
# Folder config file
|
|
162
|
+
[Dd]esktop.ini
|
|
163
|
+
|
|
164
|
+
# Recycle Bin used on file shares
|
|
165
|
+
$RECYCLE.BIN/
|
|
166
|
+
|
|
167
|
+
# Windows Installer files
|
|
168
|
+
*.cab
|
|
169
|
+
*.msi
|
|
170
|
+
*.msix
|
|
171
|
+
*.msm
|
|
172
|
+
*.msp
|
|
173
|
+
|
|
174
|
+
# Windows shortcuts
|
|
175
|
+
*.lnk
|
|
176
|
+
|
|
177
|
+
# Ruby package management
|
|
178
|
+
Gemfile.lock
|
|
179
|
+
|
|
180
|
+
# End of https://www.gitignore.io/api/vim,git,code,linux,macos,emacs,windows
|
|
181
|
+
|
|
182
|
+
# Ignore .serverless directories
|
|
183
|
+
.serverless
|
|
184
|
+
.serverless/*
|
|
185
|
+
|
|
186
|
+
# Test Coverage files
|
|
187
|
+
.coverage
|
|
188
|
+
|
|
189
|
+
# Python stuff
|
|
190
|
+
__pycache__
|
|
191
|
+
.pyc
|
|
192
|
+
|
|
193
|
+
# ignore pipenv artefacts... .venv exists when `PIPENV_VENV_IN_PROJECT=1` set
|
|
194
|
+
.venv/
|
|
195
|
+
Pipfile
|
|
196
|
+
Pipfile.lock
|
|
197
|
+
|
|
198
|
+
# ignore pytest files.
|
|
199
|
+
.pytest_cache/
|
|
200
|
+
|
|
201
|
+
# Ignore all keys are certificates.
|
|
202
|
+
*.crt
|
|
203
|
+
*.pem
|
|
204
|
+
*.key
|
|
205
|
+
|
|
206
|
+
Created by https://www.gitignore.io/api/node
|
|
207
|
+
# Edit at https://www.gitignore.io/?templates=node
|
|
208
|
+
|
|
209
|
+
### Node ###
|
|
210
|
+
# Logs
|
|
211
|
+
logs
|
|
212
|
+
*.log
|
|
213
|
+
npm-debug.log*
|
|
214
|
+
yarn-debug.log*
|
|
215
|
+
yarn-error.log*
|
|
216
|
+
lerna-debug.log*
|
|
217
|
+
|
|
218
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
219
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
220
|
+
|
|
221
|
+
# Runtime data
|
|
222
|
+
pids
|
|
223
|
+
*.pid
|
|
224
|
+
*.seed
|
|
225
|
+
*.pid.lock
|
|
226
|
+
|
|
227
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
228
|
+
lib-cov
|
|
229
|
+
|
|
230
|
+
# Coverage directory used by tools like istanbul
|
|
231
|
+
coverage
|
|
232
|
+
*.lcov
|
|
233
|
+
|
|
234
|
+
# nyc test coverage
|
|
235
|
+
.nyc_output
|
|
236
|
+
|
|
237
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
238
|
+
.grunt
|
|
239
|
+
|
|
240
|
+
# Bower dependency directory (https://bower.io/)
|
|
241
|
+
bower_components
|
|
242
|
+
|
|
243
|
+
# node-waf configuration
|
|
244
|
+
.lock-wscript
|
|
245
|
+
|
|
246
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
247
|
+
build/Release
|
|
248
|
+
|
|
249
|
+
# Dependency directories
|
|
250
|
+
node_modules/
|
|
251
|
+
jspm_packages/
|
|
252
|
+
|
|
253
|
+
# TypeScript v1 declaration files
|
|
254
|
+
typings/
|
|
255
|
+
|
|
256
|
+
# TypeScript cache
|
|
257
|
+
*.tsbuildinfo
|
|
258
|
+
|
|
259
|
+
# Optional npm cache directory
|
|
260
|
+
.npm
|
|
261
|
+
|
|
262
|
+
# Optional eslint cache
|
|
263
|
+
.eslintcache
|
|
264
|
+
|
|
265
|
+
# Optional REPL history
|
|
266
|
+
.node_repl_history
|
|
267
|
+
|
|
268
|
+
# Output of 'npm pack'
|
|
269
|
+
*.tgz
|
|
270
|
+
|
|
271
|
+
# Yarn Integrity file
|
|
272
|
+
.yarn-integrity
|
|
273
|
+
|
|
274
|
+
# dotenv environment variables file
|
|
275
|
+
.env
|
|
276
|
+
.env.test
|
|
277
|
+
.env.dev
|
|
278
|
+
.env.local
|
|
279
|
+
|
|
280
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
281
|
+
.cache
|
|
282
|
+
|
|
283
|
+
# next.js build output
|
|
284
|
+
.next
|
|
285
|
+
|
|
286
|
+
# nuxt.js build output
|
|
287
|
+
.nuxt
|
|
288
|
+
|
|
289
|
+
# react / gatsby
|
|
290
|
+
# public/
|
|
291
|
+
|
|
292
|
+
# vuepress build output
|
|
293
|
+
.vuepress/dist
|
|
294
|
+
|
|
295
|
+
# FuseBox cache
|
|
296
|
+
.fusebox/
|
|
297
|
+
|
|
298
|
+
# DynamoDB Local files
|
|
299
|
+
.dynamodb/
|
|
300
|
+
|
|
301
|
+
# npm package lock for `npn i aws-cdk`; if you don't want to pollute global install...
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# nixos / direnv
|
|
305
|
+
shell.nix
|
|
306
|
+
.direnv/
|
|
307
|
+
.envrc
|
|
308
|
+
|
|
309
|
+
# secrets
|
|
310
|
+
.secrets
|
|
311
|
+
|
|
312
|
+
# coverity scan DB
|
|
313
|
+
idir/
|
|
314
|
+
|
|
315
|
+
# pyre-check cache directory
|
|
316
|
+
.pyre/
|
|
317
|
+
|
|
318
|
+
.venv
|
|
319
|
+
venv/
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
# No zip files
|
|
323
|
+
*.zip
|
|
324
|
+
|
|
325
|
+
cdk.out
|
|
326
|
+
|
|
327
|
+
test-reports
|
|
328
|
+
.test-reports
|
|
329
|
+
*.b64
|
|
330
|
+
*.arn
|
|
331
|
+
|
|
332
|
+
.data/sfx_daily_data/SASH.0000111
|
|
333
|
+
sca-scan-temp-dir
|
|
334
|
+
datafile.json
|
|
335
|
+
|
|
336
|
+
# ignore ipnd record generated
|
|
337
|
+
.data/record_parsing_test_data/.generated_ipnd_records
|
|
338
|
+
# ignore test data in .data folder
|
|
339
|
+
.data/.ipnd_generated_data
|
|
340
|
+
.data/ipnd_error_test_data/.generated_ipnd_error_files
|
|
341
|
+
python
|
|
342
|
+
|
|
343
|
+
.test_output
|
|
344
|
+
.pipeline_e2e_test_artifacts
|
|
345
|
+
|
|
346
|
+
.generated_test_reports
|
|
347
|
+
**/Pulumi.*.yaml
|
|
348
|
+
**/Pulumi.yaml
|
|
349
|
+
.read-write-bridge
|
|
350
|
+
.python-version
|
|
351
|
+
tests/local_env_setup.py
|
|
352
|
+
|
|
353
|
+
.data/manual_test_data
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
sample_docs.json
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
# ignore egg files and metadata
|
|
360
|
+
*.egg
|
|
361
|
+
*.egg-info/
|
|
362
|
+
|
|
363
|
+
.suburb_data*
|
|
364
|
+
.reports
|
|
365
|
+
|
|
366
|
+
.env.development
|
|
367
|
+
.env.production
|
|
368
|
+
.env.agent
|
|
369
|
+
|
|
370
|
+
# ignore version manager files
|
|
371
|
+
.tool-versions
|