castor-extractor 0.5.3__py3-none-any.whl → 0.5.6__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.

Potentially problematic release.


This version of castor-extractor might be problematic. Click here for more details.

Files changed (85) hide show
  1. CHANGELOG.md +15 -0
  2. castor_extractor/commands/extract_bigquery.py +3 -1
  3. castor_extractor/commands/extract_looker.py +4 -1
  4. castor_extractor/commands/extract_metabase_api.py +3 -1
  5. castor_extractor/commands/extract_metabase_db.py +6 -2
  6. castor_extractor/commands/extract_mode.py +6 -2
  7. castor_extractor/commands/extract_powerbi.py +4 -1
  8. castor_extractor/commands/extract_snowflake.py +4 -2
  9. castor_extractor/commands/extract_tableau.py +4 -1
  10. castor_extractor/commands/file_check.py +3 -1
  11. castor_extractor/commands/upload.py +5 -2
  12. castor_extractor/file_checker/file_test.py +6 -3
  13. castor_extractor/file_checker/templates/generic_warehouse.py +4 -2
  14. castor_extractor/transformation/dbt/client/credentials.py +1 -1
  15. castor_extractor/types.py +2 -1
  16. castor_extractor/uploader/upload.py +4 -2
  17. castor_extractor/uploader/upload_test.py +0 -1
  18. castor_extractor/utils/deprecate.py +1 -1
  19. castor_extractor/utils/files_test.py +2 -2
  20. castor_extractor/utils/formatter_test.py +0 -1
  21. castor_extractor/utils/pager.py +4 -2
  22. castor_extractor/utils/pager_test.py +1 -1
  23. castor_extractor/utils/retry.py +1 -1
  24. castor_extractor/utils/safe.py +1 -1
  25. castor_extractor/utils/string_test.py +0 -1
  26. castor_extractor/utils/validation.py +4 -3
  27. castor_extractor/visualization/looker/api/client.py +26 -9
  28. castor_extractor/visualization/looker/api/client_test.py +3 -2
  29. castor_extractor/visualization/looker/api/constants.py +3 -1
  30. castor_extractor/visualization/looker/api/utils.py +3 -2
  31. castor_extractor/visualization/looker/assets.py +1 -0
  32. castor_extractor/visualization/looker/constant.py +1 -1
  33. castor_extractor/visualization/looker/extract.py +6 -1
  34. castor_extractor/visualization/metabase/client/api/client.py +2 -1
  35. castor_extractor/visualization/metabase/client/api/credentials.py +1 -1
  36. castor_extractor/visualization/metabase/client/db/client.py +4 -3
  37. castor_extractor/visualization/metabase/client/db/credentials.py +2 -2
  38. castor_extractor/visualization/metabase/client/decryption_test.py +0 -1
  39. castor_extractor/visualization/metabase/extract.py +4 -4
  40. castor_extractor/visualization/mode/client/client.py +2 -1
  41. castor_extractor/visualization/mode/client/client_test.py +4 -3
  42. castor_extractor/visualization/mode/client/credentials.py +2 -2
  43. castor_extractor/visualization/powerbi/client/constants.py +1 -1
  44. castor_extractor/visualization/powerbi/client/credentials.py +0 -1
  45. castor_extractor/visualization/powerbi/client/credentials_test.py +11 -3
  46. castor_extractor/visualization/powerbi/client/rest.py +15 -5
  47. castor_extractor/visualization/powerbi/client/rest_test.py +40 -13
  48. castor_extractor/visualization/powerbi/extract.py +4 -3
  49. castor_extractor/visualization/qlik/client/engine/client.py +3 -1
  50. castor_extractor/visualization/qlik/client/engine/json_rpc.py +4 -1
  51. castor_extractor/visualization/qlik/client/engine/json_rpc_test.py +0 -1
  52. castor_extractor/visualization/qlik/client/master.py +11 -4
  53. castor_extractor/visualization/qlik/client/rest_test.py +3 -2
  54. castor_extractor/visualization/sigma/client/client.py +7 -3
  55. castor_extractor/visualization/sigma/client/client_test.py +4 -2
  56. castor_extractor/visualization/sigma/client/credentials.py +2 -2
  57. castor_extractor/visualization/sigma/constants.py +1 -1
  58. castor_extractor/visualization/sigma/extract.py +3 -1
  59. castor_extractor/visualization/tableau/client/client.py +7 -5
  60. castor_extractor/visualization/tableau/client/client_utils.py +6 -3
  61. castor_extractor/visualization/tableau/client/credentials.py +6 -4
  62. castor_extractor/visualization/tableau/client/project.py +3 -1
  63. castor_extractor/visualization/tableau/client/safe_mode.py +2 -1
  64. castor_extractor/visualization/tableau/extract.py +7 -7
  65. castor_extractor/visualization/tableau/gql_fields.py +4 -4
  66. castor_extractor/visualization/tableau/tests/unit/graphql/paginated_object_test.py +2 -1
  67. castor_extractor/visualization/tableau/tests/unit/rest_api/auth_test.py +6 -3
  68. castor_extractor/visualization/tableau/tests/unit/rest_api/credentials_test.py +1 -1
  69. castor_extractor/visualization/tableau/tests/unit/rest_api/usages_test.py +2 -1
  70. castor_extractor/warehouse/abstract/extract.py +3 -2
  71. castor_extractor/warehouse/abstract/time_filter_test.py +0 -1
  72. castor_extractor/warehouse/bigquery/client_test.py +1 -1
  73. castor_extractor/warehouse/bigquery/extract.py +3 -2
  74. castor_extractor/warehouse/bigquery/query.py +4 -3
  75. castor_extractor/warehouse/postgres/extract.py +5 -3
  76. castor_extractor/warehouse/redshift/client_test.py +0 -1
  77. castor_extractor/warehouse/redshift/extract.py +5 -3
  78. castor_extractor/warehouse/snowflake/client.py +1 -1
  79. castor_extractor/warehouse/snowflake/client_test.py +1 -1
  80. castor_extractor/warehouse/snowflake/extract.py +5 -3
  81. castor_extractor/warehouse/synapse/extract.py +1 -1
  82. {castor_extractor-0.5.3.dist-info → castor_extractor-0.5.6.dist-info}/METADATA +2 -2
  83. {castor_extractor-0.5.3.dist-info → castor_extractor-0.5.6.dist-info}/RECORD +85 -85
  84. {castor_extractor-0.5.3.dist-info → castor_extractor-0.5.6.dist-info}/WHEEL +0 -0
  85. {castor_extractor-0.5.3.dist-info → castor_extractor-0.5.6.dist-info}/entry_points.txt +0 -0
@@ -1,92 +1,92 @@
1
- CHANGELOG.md,sha256=7ufc7pQCOO-8SEeSOgpfMwKBZD5mfkJYD84FJqdWH9U,5425
1
+ CHANGELOG.md,sha256=qgEmPOIjG-0xMsVkBl2B7cZ4JWcbxepCVBAr9r09zO8,5617
2
2
  LICENCE,sha256=sL-IGa4hweyya1HgzMskrRdybbIa2cktzxb5qmUgDg8,8254
3
3
  README.md,sha256=EL6JpZxvaQFOYv5WFuSjZvSk9Hcpsf7alMlUC5IPFjA,3423
4
4
  castor_extractor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  castor_extractor/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- castor_extractor/commands/extract_bigquery.py,sha256=3de34xbbk7UISPlCsL2yhkL6yljgYzAuiXfIol3_zNY,1252
7
- castor_extractor/commands/extract_looker.py,sha256=iGIWLFnAQQ3aFrbd34xOGKXJerU3_grDsqWNJfbLhS8,1075
8
- castor_extractor/commands/extract_metabase_api.py,sha256=pSkAwgYY0_UXcLF1If51mHdfITFSsDJ5XljwO86PJJg,761
9
- castor_extractor/commands/extract_metabase_db.py,sha256=gYyz3us8Ha8eH2roixlM7TSsPU6f7el7nDUAEvZz0Bw,1235
10
- castor_extractor/commands/extract_mode.py,sha256=PqBOQLyfeCK3KIvClKixai85sv2vt9QajNsOkYBEW6w,919
6
+ castor_extractor/commands/extract_bigquery.py,sha256=dU4OiYO1V0n32orvZnMh1_xtFKF_VxHNXcVsH3otY-g,1269
7
+ castor_extractor/commands/extract_looker.py,sha256=iN6smpd41x5QxjfVYnSIPUqa0rEFH8Q9oU6VXh-A2ec,1100
8
+ castor_extractor/commands/extract_metabase_api.py,sha256=VPyEKO2VFXzk_OsbQnDhObE9siuBfoegechCZYPZi2k,778
9
+ castor_extractor/commands/extract_metabase_db.py,sha256=cAwoeHrRg29dDh6lUlXZZsoq8NPyMrH-Gx3ovHPD3ds,1269
10
+ castor_extractor/commands/extract_mode.py,sha256=-y8ML72sRVpBEjo9hB1WZyUPznqxnNn0iS8dfJu_ALg,953
11
11
  castor_extractor/commands/extract_postgres.py,sha256=pX0RnCPi4nw6QQ6wiAuZ_Xt3ZbDuMUG9aQKuqFgJtAU,1154
12
- castor_extractor/commands/extract_powerbi.py,sha256=qQ3R6B5PA3pO97JphI2O_FDjcwytFPvSbcJlBPgFNDI,850
12
+ castor_extractor/commands/extract_powerbi.py,sha256=e6MXDNOafdp0w4ZtOnE5z5o_CxvaodUbbQFk__pDiM4,875
13
13
  castor_extractor/commands/extract_qlik.py,sha256=mSeyGOprTyBExes-lzp___7tgBS1KeyTVpwKAqMpkiw,989
14
14
  castor_extractor/commands/extract_redshift.py,sha256=bdLp7d7ImZoKCkWc3f3NXF1imIzMVT43_KPI-x4UVac,1155
15
15
  castor_extractor/commands/extract_sigma.py,sha256=agwfKj55C81-kect3K6xSJVBv3TDuPT6fGWSTytkQ2o,703
16
- castor_extractor/commands/extract_snowflake.py,sha256=KxUbbuBsKYy8hJxv_98YktoS-gemDp4hbWjGzj9sR1c,1799
17
- castor_extractor/commands/extract_tableau.py,sha256=ysEE0DHPJk79MKwFqo7mIZMBGSY4Ad-4vLr4OMxRB5k,1390
18
- castor_extractor/commands/file_check.py,sha256=HmPiuXWlwVWCgQ5lZMoYpuRAH9UJgaW2eIkdT-tHy_c,2667
19
- castor_extractor/commands/upload.py,sha256=xutRBSzg5nxoMA-fmj7m5Y_96P7xFs2b4MehKfqvzSo,1930
16
+ castor_extractor/commands/extract_snowflake.py,sha256=P_F1ubv21ksK5nkknMgm3qGN7RIi06tgFGCLtRoc9RQ,1817
17
+ castor_extractor/commands/extract_tableau.py,sha256=u-6UCd-kfXwyhNWYxZusqtgTTYkf4gAJS1vRIYWsAVU,1415
18
+ castor_extractor/commands/file_check.py,sha256=PkXFK-kPoG8PpvBP-PCvVdreqwYw6Y1fTh2QzDxACsM,2684
19
+ castor_extractor/commands/upload.py,sha256=tWN9hUn1aKJrGEmNHI_qjSciFiAoL9x7YolbIsYbg8Y,1956
20
20
  castor_extractor/file_checker/__init__.py,sha256=OSt6YLhUT42U_Cp3LCLHMVruwDkksL75Ij13X2UPnVk,119
21
21
  castor_extractor/file_checker/column.py,sha256=fMchy5v-Sd-0xuYS0V9mob7wnljslzWLhQGqrKGybdk,3097
22
22
  castor_extractor/file_checker/column_test.py,sha256=1j8PxvmvmJgpd-mk30iMYOme32ovPSIn4yCXywFoXrg,1935
23
23
  castor_extractor/file_checker/constants.py,sha256=X9UvTqcKKZf0pkJErngq0UH_e9PL0dXUlS1g_Lbo5q8,289
24
24
  castor_extractor/file_checker/enums.py,sha256=Js8YN8hAoPChH1j2I7Mmk1yHsSNh8WjndHv4gz7c9KA,536
25
25
  castor_extractor/file_checker/file.py,sha256=ZcWcpytKQfo3Xm1HlYe4BnLlLSXWHTmOHGNktFLVBd4,6537
26
- castor_extractor/file_checker/file_test.py,sha256=Ya4WA_DztKnuY0CeeZN8aaBvAnLftHWOnWJPZD0TbDE,2082
26
+ castor_extractor/file_checker/file_test.py,sha256=yxsTL8uRxb7p-AdP49piYzFNlTLG2cf0ws15ndQtYbA,2121
27
27
  castor_extractor/file_checker/file_test_users.csv,sha256=ftw4T_RBg71c8_DAxnd9fHG3FNg4mwbEQKe1DuEn3ps,547
28
28
  castor_extractor/file_checker/file_test_users_valid.csv,sha256=Ek3q7DjUS0neOu1LQaNmObINdEIR3qeHvI4IuKuHLSA,286
29
29
  castor_extractor/file_checker/templates/__init__.py,sha256=StVLm4ZGyGVmPzarxEaDR_k08T3nUnyiv8N99sAz6AQ,60
30
- castor_extractor/file_checker/templates/generic_warehouse.py,sha256=6SqeJOkfuVOBWlpP5lvBOLS2veHDxBnvL4mPwuboLA0,2967
30
+ castor_extractor/file_checker/templates/generic_warehouse.py,sha256=EjUcKVZ3gK6E3X6IJCdoYz8TAs7iMNF-6Rs7tX0w7L8,3001
31
31
  castor_extractor/logger.py,sha256=9nv7YuukrTWRyrDr3MKbC9yqLA_DWBV5-th-alHPpbs,886
32
32
  castor_extractor/transformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
33
  castor_extractor/transformation/dbt/__init__.py,sha256=fynkZOuDwD4AFcAYFdUBUbBPC5HoaQjVu-Z2BMcSnoI,91
34
34
  castor_extractor/transformation/dbt/assets.py,sha256=TqjktG7NeK_FUNAoOQJTtgCGVh8Cm9cTnoozNhXErmM,94
35
35
  castor_extractor/transformation/dbt/client/__init__.py,sha256=-9TvcGyeANOnoqceq3MnRrM2i6YzK906SZqeJqfLOpg,86
36
36
  castor_extractor/transformation/dbt/client/client.py,sha256=8SdcB5edeRHUUSz7HuTq67B_6RLo9O8z5lIOjyOOrpg,2938
37
- castor_extractor/transformation/dbt/client/credentials.py,sha256=67mWV2AML8vt--o9-2bvBzlcigj-5ZdocUcUxdc7J30,746
38
- castor_extractor/types.py,sha256=9udyf8ldssoKjR3HP2ibJ4jLIo6_F9O90_ton0LHgl8,170
37
+ castor_extractor/transformation/dbt/client/credentials.py,sha256=csE5guw16M-q2ztmYcYYwHeSaFSQfhb0Ku8vFYb32oY,760
38
+ castor_extractor/types.py,sha256=w1txspCtGIoNvLqP2DB0QkbxqCHkAEgRzYhPXALhlOU,175
39
39
  castor_extractor/uploader/__init__.py,sha256=SSRtwjg-dNoxME-RJy9G1flASiUKAC5bH1htq3CURQg,75
40
40
  castor_extractor/uploader/constant.py,sha256=hEJlWYx0dyBzgo59XUBKCYIKEODpIc2DyzwAZIiNO8g,718
41
41
  castor_extractor/uploader/env.py,sha256=5HSniVSOYVg4u38O4k8TB_qaJq9s8yJ1hjedkq_gdVg,878
42
42
  castor_extractor/uploader/env_test.py,sha256=ClCWWtwd2N-5ClIDUxVMeKkWfhhOTxpppsXUDmdjxSg,472
43
- castor_extractor/uploader/upload.py,sha256=NTXF4BlVEsRCA6S-SunyNHkcXN9JaRpK1W65ZeMWAcw,3353
44
- castor_extractor/uploader/upload_test.py,sha256=WzGtYoe45-Q_AAR_gj7aOZU_C342GdyZxiUHwITi2oU,329
43
+ castor_extractor/uploader/upload.py,sha256=5Aj3UOx8cpSVvzjYRz7S6nLk249IqUiCia70utU_970,3363
44
+ castor_extractor/uploader/upload_test.py,sha256=BfGjAYEEDBmEcUS6_b3SlKyiQNR1iRf6-qmADDirTJI,328
45
45
  castor_extractor/uploader/utils.py,sha256=NCe0tkB28BVhqzOaDhDjaSfODjjcPWB17X6chnvyCWs,478
46
46
  castor_extractor/utils/__init__.py,sha256=Ksc7ZHqMB5MLu4woaYah5gV2P024Pd3FkQUNKpKexzU,967
47
47
  castor_extractor/utils/collection.py,sha256=uenJvfamphxV5ZFt12BgfsRs99pWffYJIMjAD_Laz2Q,417
48
48
  castor_extractor/utils/constants.py,sha256=qBQprS9U66mS-RIBXiLujdTSV3WvGv40Bc0khP4Abdk,39
49
- castor_extractor/utils/deprecate.py,sha256=J-UzSNPGyIBW0oAEnQae6zLL6kgqUNmjtrS0K21fb6s,818
49
+ castor_extractor/utils/deprecate.py,sha256=_uzQiwHiz2yEqQeNMmzvVmBY46IgBhhEbGPhTrVjZU4,817
50
50
  castor_extractor/utils/env.py,sha256=78pdgtVJz0yxkT1wMt46Yyz4pn2MzHkuKhK-sbfxFGU,608
51
51
  castor_extractor/utils/files.py,sha256=3C_u7P-kSZoOABVaKsuaf8lEhldRRxyxD27-K18_dEU,1545
52
- castor_extractor/utils/files_test.py,sha256=NstdZefWE4O1_bbjV9mVy_r-ojt591uf9WAi9akgiLc,1514
52
+ castor_extractor/utils/files_test.py,sha256=omRT3XSjaSAywYUoLh1SGWqYzl4UwBYKSYA9_7mXd_E,1542
53
53
  castor_extractor/utils/formatter.py,sha256=HLQeqYioMiIX1XXCjlLDha1J8nITiCQiDL4CIthVRjU,4616
54
54
  castor_extractor/utils/formatter_test.csv,sha256=UCNqPs8-xrY1AdMSpuctVFXInQe3Z_EABP4rF-Jw5ks,3802
55
55
  castor_extractor/utils/formatter_test.json,sha256=yPP_z1ZEavaUskC-Hx33uGlwKoInHYOFKqsJ9NgwIFo,12527
56
- castor_extractor/utils/formatter_test.py,sha256=kVd5XhvoFj4Gs4TTjEAoqWBlHuuSoK2zEfMMWdJI_pU,1543
56
+ castor_extractor/utils/formatter_test.py,sha256=xzZD98o_1pis2qzXewNT1AvsWNBY1BMJADv4nsgE-8c,1542
57
57
  castor_extractor/utils/load.py,sha256=MXwGVB_Dp_VitGwo71sNB_xDmGzQ4oQ13MhaXXyYkS0,265
58
58
  castor_extractor/utils/object.py,sha256=rzazMsWE1ZKWYy75BnwbaVw9jiTlNqW28EpdVDpZhOQ,1987
59
59
  castor_extractor/utils/object_test.py,sha256=xANj63xjh_thH3JGzYWSgyLNpngDx_1ain53_0iYixc,2487
60
- castor_extractor/utils/pager.py,sha256=7_Wi1zOzMcpArzB4puPKrzdg-Nzw2X0_W5SZ2H6aeVo,3894
61
- castor_extractor/utils/pager_test.py,sha256=NohDNugb5mFIAU5bvppcObHtDLLIvb7rTyD6XWfOLOw,3245
62
- castor_extractor/utils/retry.py,sha256=mA49hApPp4zO7ADkbIXmCdaF4xrmM-WOvMXeY-AjSuw,2664
60
+ castor_extractor/utils/pager.py,sha256=J0TzBsJ3U7SwlSaF9mk3zDcycLtJjgQsYdI9eqBBkh8,3912
61
+ castor_extractor/utils/pager_test.py,sha256=8Q9lYm82oUj_-KGgPfHcD0BGxOZXPfczY584xxeKMUg,3246
62
+ castor_extractor/utils/retry.py,sha256=GnFFqfv8vX-hVIE3PKNgwYznd2rATIq0zfu1C84oizU,2662
63
63
  castor_extractor/utils/retry_test.py,sha256=-ze3spfkUGmzckSAsEC99t-aJX7DF7DzDYxhi60VPXk,1635
64
- castor_extractor/utils/safe.py,sha256=TIBq8H05JCtBc5RHbf3pM0tWIZNFCUMzAwOryqz365A,1966
64
+ castor_extractor/utils/safe.py,sha256=jpfIimwdBSVUvU2DPFrhqpKC_DSYwxQqd08MlIkSODY,1967
65
65
  castor_extractor/utils/safe_test.py,sha256=IHN1Z761tYMFslYC-2HAfkXmFPh4LYSqNLs4QZwykjk,2160
66
66
  castor_extractor/utils/store.py,sha256=mlfg0sS4azJ1eg28D_cWUWkF-npy3R9d4VPC4EAVNnI,2092
67
67
  castor_extractor/utils/string.py,sha256=-fXrp4CLJoECwOaYTuv2d8vatA74EI22URschGD8pvo,1961
68
- castor_extractor/utils/string_test.py,sha256=5n4leOBxphtnyD0iHajzsTog4vLlYk8h8LDYV4ZMSeM,2206
68
+ castor_extractor/utils/string_test.py,sha256=UUjRbs1r0iBuK7fYziQMIF92Bob3_sDfyBQsUOG9uSA,2205
69
69
  castor_extractor/utils/time.py,sha256=kUlvWrteGgVu550QcGDQ1kzxQRGzuL8jliFLTUv3tlU,1062
70
70
  castor_extractor/utils/time_test.py,sha256=M768Stg5xeUy82t2fkuuAb3BsJtY_HhxIDdUtod3pL4,211
71
71
  castor_extractor/utils/type.py,sha256=87t32cTctEjX-_BqZLtPLWu-M9OVvw_lFU4DbaQ6V0U,313
72
72
  castor_extractor/utils/uri.py,sha256=jmP9hY-6PRqdc3-vAOdtll_U6q9VCqSqmBAN6QRs3ZI,150
73
73
  castor_extractor/utils/uri_test.py,sha256=1XKF6qSseCeD4G4ckaNO07JXfGbt7XUVinOZdpEYrDQ,259
74
- castor_extractor/utils/validation.py,sha256=TkMhZEXM24n889_i5NTs5xS2MBEWEK2_t-Y1sRVujJk,1904
74
+ castor_extractor/utils/validation.py,sha256=Q1x8ZEN5K4tVhWhWs7IlTVRn-KXi-x_xdiojbDizG-c,1913
75
75
  castor_extractor/utils/validation_test.py,sha256=aSetitOCkH_K-Wto9ISOVGso5jGfTUOBLm3AZnvavO8,1181
76
76
  castor_extractor/utils/write.py,sha256=CbLMz-mkUFduwogERwe69GXXVO65HEDirVm-kDJkRxg,2135
77
77
  castor_extractor/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
78
  castor_extractor/visualization/looker/__init__.py,sha256=F1DkZQStdmPRc2AwurWL0Hhaz2SRW9ERfZLvMcBJc0g,191
79
79
  castor_extractor/visualization/looker/api/__init__.py,sha256=eMtzoMAE7ZnvfwJJAOh9Cooztj4Juzc40wSEHhIYXw4,181
80
- castor_extractor/visualization/looker/api/client.py,sha256=V-TcUCU65BTMUbXInMP5SQKuQDbylpFc9af4O5KyjL8,8859
81
- castor_extractor/visualization/looker/api/client_test.py,sha256=LlQCI_Yuu4DWmT1_lcgZP6-BZMCzgz9--F9TV0lrPCk,1924
82
- castor_extractor/visualization/looker/api/constants.py,sha256=__ExzGkhnVadOeIplEgHixqzM4lmZWiOZnC0GRZXLTg,4049
80
+ castor_extractor/visualization/looker/api/client.py,sha256=ztaFPiGbqydWQG3nI5TuBEUHLukaq2VZZTyLpz6oDJA,9404
81
+ castor_extractor/visualization/looker/api/client_test.py,sha256=Y6MAONBrbS-EpCfTHD_t-ejiZRcn966wbLZAb648kEg,1943
82
+ castor_extractor/visualization/looker/api/constants.py,sha256=pZpq09tqcGi2Vh8orXxn9eil8ewfPUOLKfVuqgV2W-A,4126
83
83
  castor_extractor/visualization/looker/api/sdk.py,sha256=MMHFABzpWg84pSVDqYvaDxjKB50Pr7ttNUqrcdtR-po,3526
84
84
  castor_extractor/visualization/looker/api/sdk_test.py,sha256=NHtKZTflPhqzBFHs1TyAQaubgxfzLLwYKFT8rEqR55I,1742
85
- castor_extractor/visualization/looker/api/utils.py,sha256=vWSz6iFFF4uA3Y3eqqGEH1CkXcZbtHqVFMnPS2o8LCQ,1320
86
- castor_extractor/visualization/looker/assets.py,sha256=50Tr3RrWzbGZCpUMkNK42wnBJMUkKdlCW1IT2KHyt3A,400
87
- castor_extractor/visualization/looker/constant.py,sha256=ZqgUJxsSkyoyA7fM5fHKNkPDA2ryr34gG97dmgSgB9A,467
85
+ castor_extractor/visualization/looker/api/utils.py,sha256=ECSRdCd6F3KWId1bM16UO2P9t_NM_7SbvnA88sKlZ2M,1326
86
+ castor_extractor/visualization/looker/assets.py,sha256=4EwCI9VwIYRPrIjHU-ZnPY3Mf3cRykWACiYXanr5jFI,442
87
+ castor_extractor/visualization/looker/constant.py,sha256=zP1g_HU0M5rPuTxHEuRQYMDK4jBMU2RZZFFv2yvmYw8,481
88
88
  castor_extractor/visualization/looker/env.py,sha256=spfVc6E2CdYDdrPepX-YEUUfHbq-ZlueU9q4pxiaRPQ,864
89
- castor_extractor/visualization/looker/extract.py,sha256=C6lBh6b9KbYjkgUigxMWE4af7ameCBQ9nSvpG8OKcTE,3685
89
+ castor_extractor/visualization/looker/extract.py,sha256=2ZsFULIVXbsTava2JPkoqquyRFZ2nn_SVZXYeRFb-H0,3876
90
90
  castor_extractor/visualization/looker/fields.py,sha256=WmiSehmczWTufCLg4r2Ozq2grUpzxDNvIAHyGuOoGs4,636
91
91
  castor_extractor/visualization/looker/fields_test.py,sha256=7Cwq8Qky6aTZg8nCHp1gmPJtd9pGNB4QeMIRRWdHo5w,782
92
92
  castor_extractor/visualization/looker/parameters.py,sha256=JZ5o5BgRs4SxxX5artUfhPaQBX6YPfX8wRp1m_txXUs,1527
@@ -94,11 +94,11 @@ castor_extractor/visualization/metabase/__init__.py,sha256=hSIoVgPzhQh-9H8XRUzga
94
94
  castor_extractor/visualization/metabase/assets.py,sha256=XeP8UzbqsrleBtdv2nJ2LtWC_p3TAL7g0zlrcjt82TM,2814
95
95
  castor_extractor/visualization/metabase/client/__init__.py,sha256=ZMn272PqMoHyWkK0fBuXw9YEnc-OeszNn_BDlMc_FSI,52
96
96
  castor_extractor/visualization/metabase/client/api/__init__.py,sha256=bWs7daLw2NA9qESCN6anhI_zCjfVmajfKDHFPvjGBz0,30
97
- castor_extractor/visualization/metabase/client/api/client.py,sha256=n4jV7jjLY4meM2sKsqtHXbw76sNlbeUKd1mbLU_GbeY,5609
98
- castor_extractor/visualization/metabase/client/api/credentials.py,sha256=HsyJ3X_N-smw_6cwQdi9pQ2Pl3KWoBqZL_Xg8dy7hGo,1334
97
+ castor_extractor/visualization/metabase/client/api/client.py,sha256=2Pfy4N1tX2TaSJ__yuykXqPSLfq0er6TFXWPY7yAnHU,5622
98
+ castor_extractor/visualization/metabase/client/api/credentials.py,sha256=hVj3Gxa99Al_p_rg6xHuWwDkfjddIvy4ZCnwAyx5vh8,1348
99
99
  castor_extractor/visualization/metabase/client/db/__init__.py,sha256=xmqEI59hvioLxE8LXcH4_njCrBy8_3QjIrZNb6bW6Rs,29
100
- castor_extractor/visualization/metabase/client/db/client.py,sha256=yXjHVeuh-GRFA3rUHMVtOHFhcxxnp_0TDpBpI8UISLA,4091
101
- castor_extractor/visualization/metabase/client/db/credentials.py,sha256=xWTQ6xDBJak7YS13B5kmh26L36VY0XYpCX_DbEAB4QM,1863
100
+ castor_extractor/visualization/metabase/client/db/client.py,sha256=mVcu0WOSmiGBhiJq7hg3RaLDLNHg6617S0xemBjAmQs,4115
101
+ castor_extractor/visualization/metabase/client/db/credentials.py,sha256=WSoALbUO9l6PU3didg3bsl6rPcKfAbH3RvzlnyMYJcQ,1891
102
102
  castor_extractor/visualization/metabase/client/db/queries/.sqlfluff,sha256=sOQQOpAa9QMj9cBlulfmt-DZ_kQzMpzSAEnh10QGSB0,76
103
103
  castor_extractor/visualization/metabase/client/db/queries/base_url.sql,sha256=p2EL9kdt-hw_yh3aeCE91AXEB4RrYAbG2QrBBNqQjDE,79
104
104
  castor_extractor/visualization/metabase/client/db/queries/card.sql,sha256=U4-ZrZP5XS7Kssd3CFlpGrABbHAMK09Bh_yeT3z7Yk8,419
@@ -109,71 +109,71 @@ castor_extractor/visualization/metabase/client/db/queries/database.sql,sha256=Kx
109
109
  castor_extractor/visualization/metabase/client/db/queries/table.sql,sha256=cCO8YjB8svDqaCW8pIHfM5hw0wugMTCYz1l9Fyiuq4c,46
110
110
  castor_extractor/visualization/metabase/client/db/queries/user.sql,sha256=3aNAqxc2IBASE154j6uXlybhsNcNVcVbfs7SPT2JfWw,41
111
111
  castor_extractor/visualization/metabase/client/decryption.py,sha256=q1LyFlHUx1xUGFOjvzJJMe0L8MXPIYLleY7ECysLPsI,1076
112
- castor_extractor/visualization/metabase/client/decryption_test.py,sha256=rtcaSeCD9AIOhVTK5NgjWY2yx9aBySPcKrPd7cpDTkI,591
112
+ castor_extractor/visualization/metabase/client/decryption_test.py,sha256=qZAIksj1gj5MKjapDPVWz3BrkzZ3Mhd1V0EPzG2vb0w,590
113
113
  castor_extractor/visualization/metabase/client/shared.py,sha256=0uh-jwdELjZDFo5ZDyHPa7EeNCMTCMgz2k-pPQq99VI,389
114
114
  castor_extractor/visualization/metabase/errors.py,sha256=QLGm7qBQP-BY1lKlUf_ulPTjQ8uWrKvYj8t0_I6D124,1006
115
- castor_extractor/visualization/metabase/extract.py,sha256=St93-LRRqefmpWmL02kiyrN1jiqu-y-Hj5bAOJT3K3g,1773
115
+ castor_extractor/visualization/metabase/extract.py,sha256=iIxBLo7dbFBUrXNPE80gTnxkHP0pPVmzVxOD2Q3Ebyg,1777
116
116
  castor_extractor/visualization/metabase/types.py,sha256=2dBZCUs5_x_y2rWbUVo6IGDWbgRZQm-c-tNetbkBzg4,45
117
117
  castor_extractor/visualization/mode/__init__.py,sha256=0xitUMLcklQKzeKyWtp_wMrnFXC2iJDSNipuuKiEU6Y,117
118
118
  castor_extractor/visualization/mode/assets.py,sha256=_z8lwMEwmj_Ehsjm3wQpto2F9a8Gpi3bVPu9DxYXZFA,1552
119
119
  castor_extractor/visualization/mode/client/__init__.py,sha256=MF64bwUCd4sm3dvcxZnkb4ujHtxT_KeuXdD0nVieEt4,27
120
- castor_extractor/visualization/mode/client/client.py,sha256=hIXDGcaO_MagrY-G6AY1OfcjdbTa5bPwR_RtRx4DlwE,7803
120
+ castor_extractor/visualization/mode/client/client.py,sha256=fjTiPlrb8QPAxnMGa-d8tk77g503pYegDfhCsKl5vEI,7820
121
121
  castor_extractor/visualization/mode/client/client_test.json,sha256=oGmzg7fTXQa67xvsvFKmogcNpj8hfMbzmlY7iP9oa9g,2087
122
- castor_extractor/visualization/mode/client/client_test.py,sha256=03bug3Ty-NXWX114xfOBLx2AkgUtY3w5VU9jpPBXexI,1400
122
+ castor_extractor/visualization/mode/client/client_test.py,sha256=GEDApDWDcOQySTX2tfUqMdw7YMap_dblSl6zz-G1XDQ,1424
123
123
  castor_extractor/visualization/mode/client/constants.py,sha256=_Si5AF6VnpoSfnNNgb5afV1mby1E-_1GGE2WLSR_fRI,453
124
- castor_extractor/visualization/mode/client/credentials.py,sha256=5rgcF6sTjajx-IEhEMq42eX7fUSUuDyyQd4cFNUasXw,1622
124
+ castor_extractor/visualization/mode/client/credentials.py,sha256=VEwPY-dYrSyyCdggf-K8GSKJ_ntAgh4jRmgyhi_RZ8A,1650
125
125
  castor_extractor/visualization/mode/errors.py,sha256=SKpFT2AiLOuWx2VRLyO7jbAiKcGDFXXrsebpNEKtr0E,1495
126
126
  castor_extractor/visualization/mode/extract.py,sha256=ZmIOmVZ8_fo4qXe15G5Sis_IzZv1ToJkC_qrETJcjrM,1559
127
127
  castor_extractor/visualization/powerbi/__init__.py,sha256=XSr_fNSsR-EPuGOFo7Ai1r7SttiN7bzD3jyYRFXUWgQ,106
128
128
  castor_extractor/visualization/powerbi/assets.py,sha256=MXnqcDWZMSGxfMInBtCn3jfP-6s1k3WIc921kIfPD4g,504
129
129
  castor_extractor/visualization/powerbi/client/__init__.py,sha256=hU8LE1gV9RttTGJiwVpEa9xDLR4IMkUdshQGthg4zzE,62
130
- castor_extractor/visualization/powerbi/client/constants.py,sha256=86LjsNhYPqIdC7yXOuXcYmQgQXSscc2uABai19pXv94,2342
131
- castor_extractor/visualization/powerbi/client/credentials.py,sha256=p1BS2NwJtXPIacKHzJXjl-KrB4Ju8i4K4booCzl_POQ,501
132
- castor_extractor/visualization/powerbi/client/credentials_test.py,sha256=LJKtj2tgHy0JoFCruTI6Gy2uwn9xevGE560IyVlcAxY,720
133
- castor_extractor/visualization/powerbi/client/rest.py,sha256=GEvOdfzt00eTCDm6xAroBLQR9_IIbqbOw-6XExv8FqA,9383
134
- castor_extractor/visualization/powerbi/client/rest_test.py,sha256=_ksuvnHiZ8dXG37FZBzXk75kJw-PRISLruULD2aV3VU,7098
130
+ castor_extractor/visualization/powerbi/client/constants.py,sha256=Cx4pbgyAFc7t_aRQyWj7q-qfkltJl-JgKdMzeKmC9AI,2356
131
+ castor_extractor/visualization/powerbi/client/credentials.py,sha256=_YYuHWzL6QbXeGVVmEF8vSZKYnWaQk5Mx-7-13StUMo,500
132
+ castor_extractor/visualization/powerbi/client/credentials_test.py,sha256=23ZlLCvsPB_fmqntnzULkv0mMRE8NCzBXtWS6wupJn4,787
133
+ castor_extractor/visualization/powerbi/client/rest.py,sha256=qhmA49tayNUzZsX53VsdqL7cOhWfbryVLwN5bH1zGfA,9500
134
+ castor_extractor/visualization/powerbi/client/rest_test.py,sha256=8nOroYf1aoxvtS6UPeJa3ZY7K-IsYqMIyrtbGo35uKQ,7321
135
135
  castor_extractor/visualization/powerbi/client/utils.py,sha256=0RcoWcKOdvIGH4f3lYDvufmiMo4tr_ABFlITSrvXjTs,541
136
136
  castor_extractor/visualization/powerbi/client/utils_test.py,sha256=ULHL2JLrcv0xjW2r7QF_ce2OaGeeSzajkMDywJ8ZdVA,719
137
- castor_extractor/visualization/powerbi/extract.py,sha256=768HvNEPNt0kWYicEi-_Qy0AUr96woaUlMwtTe1gYeg,1305
137
+ castor_extractor/visualization/powerbi/extract.py,sha256=0rTvI5CiWTpoJx6bGdpShdl4eMBWjuWbRpKvisuLPbw,1328
138
138
  castor_extractor/visualization/qlik/__init__.py,sha256=78EYR5fCiEG69Woctc_k3S7AY6P4ObkuZBROalC0iFQ,143
139
139
  castor_extractor/visualization/qlik/assets.py,sha256=Qh0_iJsOVidrf404cJjPgu4Z8lO0IreJpOKojHvV3d8,1634
140
140
  castor_extractor/visualization/qlik/client/__init__.py,sha256=Q8JRKGWWZB0X0g1iqF-cUEvIHHA3CMqgpz19UCkfp5k,94
141
141
  castor_extractor/visualization/qlik/client/constants.py,sha256=HM7_czk2v87bf3HCAIaNVhaSREI8-9ygaOmK69HquZQ,786
142
142
  castor_extractor/visualization/qlik/client/engine/__init__.py,sha256=0QCTW_N6RmqBq6pr-YTkgQN6UsOETZ6HHeF_2BGa_E4,36
143
- castor_extractor/visualization/qlik/client/engine/client.py,sha256=nNAJklOcEoJMubeiVEMW9K3Rbafi5cvf5AGSVaaHr4M,2512
143
+ castor_extractor/visualization/qlik/client/engine/client.py,sha256=bC1-FfU09mSGY8RzVPMxsBQD63hT7pc1HsRjxf1yzCs,2537
144
144
  castor_extractor/visualization/qlik/client/engine/constants.py,sha256=euPZnUpr8p3M7BAA3IPWmcwEoXb2POPC8CxTjt8xd70,707
145
145
  castor_extractor/visualization/qlik/client/engine/error.py,sha256=xdVMOsz5iaUK343-X5vkhxSrVmdeWom7DF0sDT-CtNQ,1229
146
146
  castor_extractor/visualization/qlik/client/engine/error_test.py,sha256=YpyK3nWvOFpYC9JlPsbECkdBlCnZPTojUbimX5ZT1e8,1005
147
- castor_extractor/visualization/qlik/client/engine/json_rpc.py,sha256=u7mkemzC-CbSOZtSqluFQQebzIScYzVPDs7LeVh9Pps,1386
148
- castor_extractor/visualization/qlik/client/engine/json_rpc_test.py,sha256=xLo-vPzbKsZ7_Eu3m0zYmkwree1CNeb6fZDqe30ttws,1305
147
+ castor_extractor/visualization/qlik/client/engine/json_rpc.py,sha256=xu6AB7BnGIY2Thj3Hkm09ua6h3_7in8I7Eg4ZdTNbno,1411
148
+ castor_extractor/visualization/qlik/client/engine/json_rpc_test.py,sha256=WobE7aOnGwixS021xBqFDGWmUhW0u8m7nX0kFs8nyC8,1304
149
149
  castor_extractor/visualization/qlik/client/engine/websocket.py,sha256=KVgymI51s7_FPWEEDcalbAJa7sOrjjtDFAusl-lduGs,2032
150
- castor_extractor/visualization/qlik/client/master.py,sha256=sXDhsWOyTMrDOJx6H8NyUqt1SC_cJYmqpkajmupQ5bU,3209
150
+ castor_extractor/visualization/qlik/client/master.py,sha256=eEv9RuFfssId6xpqBk04lIHuh_LBpG6uqx_5aMsUtJM,3261
151
151
  castor_extractor/visualization/qlik/client/rest.py,sha256=EkHEs3_Vrmy0Ex5b9M_klmfn6P6i1ESAf_8pWH2gte8,5966
152
- castor_extractor/visualization/qlik/client/rest_test.py,sha256=pwlkufeJ45wV1kPX7qkrTzh5UfVjrK-_F1iD3mIUKz8,1676
152
+ castor_extractor/visualization/qlik/client/rest_test.py,sha256=Z2gBTokUVv-JapBtrY2nZDJzBtOusRq6_lJutVvzqG8,1684
153
153
  castor_extractor/visualization/qlik/constants.py,sha256=Pbd1SH3_VI_yEhoDx4PIXBUup-MqXUFjxDkDRr2V4J8,95
154
154
  castor_extractor/visualization/qlik/extract.py,sha256=1ulrirDzoKEdsWxztR6MHcUAE8CiEMx75esdUE7PAmY,2397
155
155
  castor_extractor/visualization/sigma/__init__.py,sha256=m98AEysUsVHQAWT6m5nvrtLMs22SDQH9G78-IcUwBoY,130
156
156
  castor_extractor/visualization/sigma/assets.py,sha256=q4Wy9g_b0yTtydCWGLsd9eruL5A1pRUJkLK4xsUGvUQ,246
157
157
  castor_extractor/visualization/sigma/client/__init__.py,sha256=sFqsbcwilIxu75njtSbnAIsNlPdRgB39SAInNUf-nbQ,90
158
- castor_extractor/visualization/sigma/client/client.py,sha256=ZnhRaRnp17EyYIiL4q63fH0R3g61H7G58iif7PF50M0,6311
159
- castor_extractor/visualization/sigma/client/client_test.py,sha256=uS8ft_vhtWzpz-LvJ9wzinGtaZ7ehf-1H08jUiMzgH4,1529
160
- castor_extractor/visualization/sigma/client/credentials.py,sha256=oXDyTTYrA_T6Jbrx7SPFz7vCq-WLXRRMZcdR8U5-KXo,769
158
+ castor_extractor/visualization/sigma/client/client.py,sha256=7yyp3s2TsBfQQTD09yqFFj_G2M7mdo3khq7I8ZLqRsE,6412
159
+ castor_extractor/visualization/sigma/client/client_test.py,sha256=qZWlq_QSyVNHXX96ZbBfWp5GduTllQHDDowFXwQYrcU,1552
160
+ castor_extractor/visualization/sigma/client/credentials.py,sha256=k3mtaXrBHQdBRk5J2rzFU0YUuO89uX-FjYU1WLqfmjU,797
161
161
  castor_extractor/visualization/sigma/client/endpoints.py,sha256=7yNDL0p9wZDE7CcVOj9Z1eP2tdJE1CUT9vbfSEV2kOY,1157
162
162
  castor_extractor/visualization/sigma/client/pagination.py,sha256=EZGMaONTzZ15VINUAtH0sOmJae0JlDjOQPKBXK_V8sg,667
163
- castor_extractor/visualization/sigma/constants.py,sha256=0O_0LrX45uDACFoHnQnrTBz74u5RMo-g_akvSLqSrgE,130
164
- castor_extractor/visualization/sigma/extract.py,sha256=BeRMkFLv7CQx8wmyuTYj4L1XTFIvntGIcwZSYZX62tE,2661
163
+ castor_extractor/visualization/sigma/constants.py,sha256=6oQKTKNQkHP_9GWvSOKeFaXd3pKJLhn9Mfod4nvOLEs,144
164
+ castor_extractor/visualization/sigma/extract.py,sha256=OgjUsc1o6lPPaO5XHgCrgQelBrqbdemxKggF4JBPBUI,2678
165
165
  castor_extractor/visualization/tableau/__init__.py,sha256=hDohrWjkorrX01JMc154aa9vi3ZqBKmA1lkfQtMFfYE,114
166
166
  castor_extractor/visualization/tableau/assets.py,sha256=-JGZlen7ww_3sNBOrJ4-twGEAZCM3rbPMjBZ-D7aMsA,762
167
167
  castor_extractor/visualization/tableau/client/__init__.py,sha256=FQX1MdxS8Opn3Oyq8eby7suk3ANbLlpzzCPQ3zqvk0I,78
168
- castor_extractor/visualization/tableau/client/client.py,sha256=t_rfGDHj6e18X-9YN1kkJm7A11xjt4P_hSXydxVdmfA,6824
169
- castor_extractor/visualization/tableau/client/client_utils.py,sha256=NfD4HXM8-gPZokb6Rlim9i5PukC-A0Pr8X8z_4bbswo,2077
170
- castor_extractor/visualization/tableau/client/credentials.py,sha256=mtfZZ5ZsiisvfwT2U2fQs9ZBQGaDT9uSO20HgsIqrdM,3335
171
- castor_extractor/visualization/tableau/client/project.py,sha256=bDf0sf0T3Et5F8ATXNPT3-Q2VTOEG3sC0eJtinZcsWA,803
172
- castor_extractor/visualization/tableau/client/safe_mode.py,sha256=12pVLUns4BdK6otyXOcbXNjF2VghTjqb8ISZS18JLlQ,2036
168
+ castor_extractor/visualization/tableau/client/client.py,sha256=J6qQZBCWMaWPebFcW7A1OKjWTk7b6h4AZNApKbyY85w,6861
169
+ castor_extractor/visualization/tableau/client/client_utils.py,sha256=taTCeK41nbwXTZeWCBbFxfCSlNnEq4Qfaxlle7yJVic,2094
170
+ castor_extractor/visualization/tableau/client/credentials.py,sha256=szq2tM6sOZqtdyHZgPCNUAddETrwTZaDizLqp-aVBEw,3386
171
+ castor_extractor/visualization/tableau/client/project.py,sha256=uLlZ5-eZI_4VxBmEB5d1gWy_X_w6uVt2EKoiX9cJ0UA,812
172
+ castor_extractor/visualization/tableau/client/safe_mode.py,sha256=MF_PTfR3oAA255Rg0PefYmZXLalaTP5iiATf5dkg6So,2045
173
173
  castor_extractor/visualization/tableau/constants.py,sha256=O2CqeviFz122BumNHoJ1N-e1lzyqIHF9OYnGQttg4hg,126
174
174
  castor_extractor/visualization/tableau/errors.py,sha256=WWvmnp5pdxFJqanPKeDRADZc0URSPxkJqxDI6bwoifQ,91
175
- castor_extractor/visualization/tableau/extract.py,sha256=75Z21qeOyinJqnbWFo74Mk4Q0ja0yorss9ZKPc1eQFg,2873
176
- castor_extractor/visualization/tableau/gql_fields.py,sha256=m03qXuJzP-4UfUnAVmV8RKBSNoeNl2wVWz8n9tMyGmI,4728
175
+ castor_extractor/visualization/tableau/extract.py,sha256=KRhAMq5JUoX8j5fpFP9-4S3AtsnrvSXYM-N7t9fYljM,2880
176
+ castor_extractor/visualization/tableau/gql_fields.py,sha256=SxO7G3228E9Pm95YE6JrMMFXKUjVn_7D5L8WX4nRQOg,4732
177
177
  castor_extractor/visualization/tableau/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
178
  castor_extractor/visualization/tableau/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
179
  castor_extractor/visualization/tableau/tests/unit/assets/graphql/metadata/metadata_1_get.json,sha256=4iMvJ_VakDa67xN2ROraAccaz_DDxX6Y5Y1XnTU5F5Y,446
@@ -184,12 +184,12 @@ castor_extractor/visualization/tableau/tests/unit/assets/rest_api/user_get.xml,s
184
184
  castor_extractor/visualization/tableau/tests/unit/assets/rest_api/view_get_usage.xml,sha256=UHfPPPETt0rrXde6EjsNdrOGdbVqIyeQwDwRU0nP5fY,1415
185
185
  castor_extractor/visualization/tableau/tests/unit/assets/rest_api/workbook_get.xml,sha256=MLyS2AbnPZxkAClCxOK6_DTVoiK4TQjzcw--lQ2Jug8,1325
186
186
  castor_extractor/visualization/tableau/tests/unit/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- castor_extractor/visualization/tableau/tests/unit/graphql/paginated_object_test.py,sha256=ne1ukaSzjiqpomZEW3Js4zOI8QLbsk8MVtBr_9L96pQ,1917
187
+ castor_extractor/visualization/tableau/tests/unit/graphql/paginated_object_test.py,sha256=stFLqx8ifMBe75D62Bq6izn26kLgvxrmyBxGZH2wK4c,1922
188
188
  castor_extractor/visualization/tableau/tests/unit/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- castor_extractor/visualization/tableau/tests/unit/rest_api/auth_test.py,sha256=X0FNAl-MDrwEohfWD38RlimzhsUYkkYNjIrZBb02KN0,1134
190
- castor_extractor/visualization/tableau/tests/unit/rest_api/credentials_test.py,sha256=PBp4ZlLtKYb2VRAK0Iut3TxYOH1juqwZnqtg-iQkpA8,422
189
+ castor_extractor/visualization/tableau/tests/unit/rest_api/auth_test.py,sha256=TST9rYHMBd9iQjmet1P4xC-Rw2VqwHAfCVLkAlYj6SM,1173
190
+ castor_extractor/visualization/tableau/tests/unit/rest_api/credentials_test.py,sha256=RPFzH8-55Zy16RegacNybau73GLH4WFEH6MLbBC6qew,436
191
191
  castor_extractor/visualization/tableau/tests/unit/rest_api/projects_test.py,sha256=ySm56VP4Iy7CZYHUEdrBow9_YKGBc7XwHbvzZRJEKUo,1779
192
- castor_extractor/visualization/tableau/tests/unit/rest_api/usages_test.py,sha256=59UzpSXRpXSemueCIoyWzqdNtXxtiWojBBSHn0aou6c,1384
192
+ castor_extractor/visualization/tableau/tests/unit/rest_api/usages_test.py,sha256=OdY9OehUEjSsHnOJ7lR906oEvIo5k2RV9y-Zvgy_XMs,1401
193
193
  castor_extractor/visualization/tableau/tests/unit/rest_api/users_test.py,sha256=-D3mZtnsXQd5xUow8nYo5Ru2Rl9mXDdGGQZ5bVzAmJg,1499
194
194
  castor_extractor/visualization/tableau/tests/unit/rest_api/workbooks_test.py,sha256=ga5MK2aN0BNw-Vo7g8OJk8ORmIgrIE8VIXG6p5CO748,1979
195
195
  castor_extractor/visualization/tableau/tests/unit/utils/__init__.py,sha256=IzeQqv7EBwGIBh50y6TEsUVXXpqXLjaeBkZeAb0CisE,26
@@ -201,14 +201,14 @@ castor_extractor/warehouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
201
201
  castor_extractor/warehouse/abstract/__init__.py,sha256=tIZRkvqZt-7ZwxH8mikxbirHpZuHYpbztxJ6vf5r0yg,386
202
202
  castor_extractor/warehouse/abstract/asset.py,sha256=BjAf0iXhgFy8mqJl_8VCoifWaA8GQ8tXJtoJjIYdKJo,1182
203
203
  castor_extractor/warehouse/abstract/client.py,sha256=257ksjlvKSIjy54LZghc0lTQ2gGC1f0BbexXJj0b9Fs,1947
204
- castor_extractor/warehouse/abstract/extract.py,sha256=tVwiL08qrokl6c35eVrjI_fiF9GrqICESiPSt6PEkBM,2885
204
+ castor_extractor/warehouse/abstract/extract.py,sha256=gIQPZi9M6cji_klvYO4DDsQMTfK-liHVjCVKt54XafE,2901
205
205
  castor_extractor/warehouse/abstract/query.py,sha256=uOmSAtel9Zu_NfPxPASy1UAWa_0VsZ3-cd2CKUOejYs,2640
206
206
  castor_extractor/warehouse/abstract/time_filter.py,sha256=bggIONfMmUxffkA6TwM3BsjfS2l9WFxPq8krfsau5pw,935
207
- castor_extractor/warehouse/abstract/time_filter_test.py,sha256=V_nNzEI6RE5UK1sAFKJogrWWnQeHYIX_TZtTb67COaE,449
207
+ castor_extractor/warehouse/abstract/time_filter_test.py,sha256=PIkegB7KOKBdpc6zIvmyl_CeQyADeFDplyQ8HTNU5LA,448
208
208
  castor_extractor/warehouse/bigquery/__init__.py,sha256=cQTw-nkKg3CQemgufknJHPssvUWCPURTMVb6q5hiIcs,125
209
209
  castor_extractor/warehouse/bigquery/client.py,sha256=EHwTIoKR6P-W-_rGT5mYGXHdia8d7XjlxwstTVNQYmY,3062
210
- castor_extractor/warehouse/bigquery/client_test.py,sha256=RmE1ygojFfRmNY_v_Ud4sSsrXcW_XLyZHyn7mYz1EkQ,1567
211
- castor_extractor/warehouse/bigquery/extract.py,sha256=iblqnXo0knhmGC8njtgDigR4UoNh7MAw-YSW02CzpWs,2800
210
+ castor_extractor/warehouse/bigquery/client_test.py,sha256=jIXxF3tLQzBD5aBnKdUGClVLCpc0Ju0Iz8OUAmpNuT4,1568
211
+ castor_extractor/warehouse/bigquery/extract.py,sha256=jo_9sxsCFl0ZaL1VdQ9JZ5iEEGJQVm_ogJhfpmVgT3k,2810
212
212
  castor_extractor/warehouse/bigquery/queries/.sqlfluff,sha256=ce8UDW2k39v6RBVxgKqjOHHYMoGN9S9f7BCZNHHhox8,30
213
213
  castor_extractor/warehouse/bigquery/queries/column.sql,sha256=NxdTnHwomHTEGSc-UoXFKUwg59I9XAOwrSau7JUqGQE,1815
214
214
  castor_extractor/warehouse/bigquery/queries/cte/sharded.sql,sha256=kdk7N0qoH6qcLX7m6pgYYkQWIqLtiCvY-6asQpQecUo,1347
@@ -219,11 +219,11 @@ castor_extractor/warehouse/bigquery/queries/table.sql,sha256=D15UNem03Bfcy0JYvKT
219
219
  castor_extractor/warehouse/bigquery/queries/table_with_tags.sql,sha256=mhWQHaLgyumtdJX5XyEbdrn_Qtt-RCu4cH1WLM6TN9o,2660
220
220
  castor_extractor/warehouse/bigquery/queries/user.sql,sha256=bE4pSoVv8AujDupx-z9c3akwBVOLX5LY59O2154BG4I,189
221
221
  castor_extractor/warehouse/bigquery/queries/view_ddl.sql,sha256=obCm-IN9V8_YSZTwcgNSBDD0ZXPgRjlxJjrZDSEH2MU,326
222
- castor_extractor/warehouse/bigquery/query.py,sha256=ZlgsALHi52NXD4XaS-v3V7zIgaWvvDkM6K7HRZUsKbU,4147
222
+ castor_extractor/warehouse/bigquery/query.py,sha256=hrFfjd5jW2oQnZ6ozlkn-gDe6sCIzu5zSX19T9W6fIk,4162
223
223
  castor_extractor/warehouse/bigquery/types.py,sha256=LZVWSmE57lOemNbB5hBRyYmDk9bFAU4nbRaJWALl6N8,140
224
224
  castor_extractor/warehouse/postgres/__init__.py,sha256=Yb1G_u5JgNB4ROuK8-PSe0THo94Su-FL_gOrPI1hkK0,125
225
225
  castor_extractor/warehouse/postgres/client.py,sha256=RzYnR9AFo46ljjrYL9IpAH8OmLEzQ52ZyteYAHy5ZGM,871
226
- castor_extractor/warehouse/postgres/extract.py,sha256=A-JPzXAFbPOpa-W_llcnDUvdyPua1mXTYiUgNsKjUgI,2099
226
+ castor_extractor/warehouse/postgres/extract.py,sha256=gmTpS-uqhx5mrAXRi6yVj263L2oUCpplX6CCf383wQU,2131
227
227
  castor_extractor/warehouse/postgres/queries/.sqlfluff,sha256=Z7nq1jdnKxpOKpKTpJIyCCd5zxaxWtQwlpVTzaJq7m4,30
228
228
  castor_extractor/warehouse/postgres/queries/column.sql,sha256=N7UzWK0aslvoaXQritSf-EE7h8fpadT4AYFaCwfMo9s,1632
229
229
  castor_extractor/warehouse/postgres/queries/database.sql,sha256=GRM-CHI3EGCjpEEvgzdefLhV74EPTqCOCaud0S1Rv_E,241
@@ -234,8 +234,8 @@ castor_extractor/warehouse/postgres/queries/user.sql,sha256=sEXveJAuNvZacvpI6Wfw
234
234
  castor_extractor/warehouse/postgres/query.py,sha256=5QmI79BP_EjqxeABNg56rxuM9XuuXHuFFzCk6svnFEw,540
235
235
  castor_extractor/warehouse/redshift/__init__.py,sha256=CC82SejYDlwYhZhhn40ln-oTsRx7AJ1Km61cxPkymjE,125
236
236
  castor_extractor/warehouse/redshift/client.py,sha256=R9jyKgq_ig9EZwEZiRi2Cgcgcs2Z53Qs9C_VMup9ZhQ,764
237
- castor_extractor/warehouse/redshift/client_test.py,sha256=HWb9Q_cupQYaqg2eOcOOMzObnClkFFK_bZj7_-TY_SM,1028
238
- castor_extractor/warehouse/redshift/extract.py,sha256=z2GY-X8wuZCFlSSLwRwlyrUXBLLIdprF1KCC2zMDmeM,2238
237
+ castor_extractor/warehouse/redshift/client_test.py,sha256=yVFNfdq982GTL0lDLkntEj5LPRswnNMcoJwxzPdFDWY,1027
238
+ castor_extractor/warehouse/redshift/extract.py,sha256=3TJ_AkLk1ml578HkgMc2wxwAzmkjidioy7dnm8MPdMM,2270
239
239
  castor_extractor/warehouse/redshift/queries/.sqlfluff,sha256=W4pFQiY8KMtXwn3WguYQJA8cj78VR7K-iokPoZoy5aM,30
240
240
  castor_extractor/warehouse/redshift/queries/column.sql,sha256=VLmt8yfILajepv5ZEOyinA4101eZKHr1Mew4f2DqDk0,7044
241
241
  castor_extractor/warehouse/redshift/queries/database.sql,sha256=_C0knW159YDfReGuWLjIdvxHzefo1Xg2xw2dJKJzNk8,299
@@ -248,9 +248,9 @@ castor_extractor/warehouse/redshift/queries/user.sql,sha256=sEXveJAuNvZacvpI6Wfw
248
248
  castor_extractor/warehouse/redshift/queries/view_ddl.sql,sha256=Pkyh_QT6d4rhTeyiVcqw6O8CRl7NEhk2p7eM5YIn5kg,719
249
249
  castor_extractor/warehouse/redshift/query.py,sha256=0C81rkt2cpkWrJIxxwALDyqr-49vlqQM04y_N6wwStc,540
250
250
  castor_extractor/warehouse/snowflake/__init__.py,sha256=G4PGCtcpNaf33sKcT_ypAITI0zu8NxQhAeBmfL05LZg,128
251
- castor_extractor/warehouse/snowflake/client.py,sha256=9CzkKVDFsqxamLQXKOxGm-y2HPbHxlJS9lWEhRIpiOQ,4128
252
- castor_extractor/warehouse/snowflake/client_test.py,sha256=R_9uanPhQH_6oYhFd-urQsl_9AXqy3BbDTOwcL_GUC4,1434
253
- castor_extractor/warehouse/snowflake/extract.py,sha256=P2mBYuxus8GlgOxvrGdtXtfIQSa5jhjDegm1lS5pQM8,2443
251
+ castor_extractor/warehouse/snowflake/client.py,sha256=UnMfNwUmNTKv1r9TLXhl4uElnh4Gm9fyrH-dPUvzhX4,4129
252
+ castor_extractor/warehouse/snowflake/client_test.py,sha256=ScE1a7Py7nO1cEcblixfzWD-nmscdZwC7z3oPRcbGvA,1435
253
+ castor_extractor/warehouse/snowflake/extract.py,sha256=h4K1E2pO92Hgb3HVJuVDRKPpihK7f0NyTXcQSYKFzN8,2475
254
254
  castor_extractor/warehouse/snowflake/queries/.sqlfluff,sha256=vttrwcr64JVIuvc7WIg9C54cbOkjg_VjXNR7YnTGOPE,31
255
255
  castor_extractor/warehouse/snowflake/queries/column.sql,sha256=zfL9uio_M6JYtXks85cy5emmWnUuI4Oi5QWLjeazjZg,1130
256
256
  castor_extractor/warehouse/snowflake/queries/column_lineage.sql,sha256=YKBiZ6zySSNcXLDXwm31EjGIIkkkZc0-S6hI1SRM80o,1179
@@ -265,7 +265,7 @@ castor_extractor/warehouse/snowflake/queries/user.sql,sha256=88V8eRj1NDaD_ufclsK
265
265
  castor_extractor/warehouse/snowflake/queries/view_ddl.sql,sha256=eWsci_50cxiYIv3N7BKkbXVM3RoIzqSDtohqRnE5kg4,673
266
266
  castor_extractor/warehouse/snowflake/query.py,sha256=yDpG4e23xtjEfAKNSAgL9wx17ChFSlvAbig2mJ5ZEC0,1769
267
267
  castor_extractor/warehouse/synapse/__init__.py,sha256=-VyWS6O9gptZ-FTDnUVDi87r_PUA59dPXPjLG1lwzpY,36
268
- castor_extractor/warehouse/synapse/extract.py,sha256=j7p2RG1bd_Hq3CccWYQ9E1wfJxVVFjgjvMDgxWA-k3I,517
268
+ castor_extractor/warehouse/synapse/extract.py,sha256=fsBWZY19HPJ-0BqReHoAlW7EoZKf67fEIPfduQjom7k,518
269
269
  castor_extractor/warehouse/synapse/queries/.sqlfluff,sha256=7eDQrhRQHKUc5zmmNCNG55acRNPMX4mzxylOLf2pM_g,26
270
270
  castor_extractor/warehouse/synapse/queries/column.sql,sha256=7ZMheQK0iX2VwjNpOlazalkkWM42EvzbdPhz1N7BHlM,1392
271
271
  castor_extractor/warehouse/synapse/queries/database.sql,sha256=TwDKFsFda3LXTUPjAm79M80ZMZj0yYM9Ay7RwFOLh8I,138
@@ -274,7 +274,7 @@ castor_extractor/warehouse/synapse/queries/schema.sql,sha256=aX9xNrBD_ydwl-znGSF
274
274
  castor_extractor/warehouse/synapse/queries/table.sql,sha256=mCE8bR1Vb7j7SwZW2gafcXidQ2fo1HwxcybA8wP2Kfs,1049
275
275
  castor_extractor/warehouse/synapse/queries/user.sql,sha256=sTb_SS7Zj3AXW1SggKPLNMCd0qoTpL7XI_BJRMaEpBg,67
276
276
  castor_extractor/warehouse/synapse/queries/view_ddl.sql,sha256=3EVbp5_yTgdByHFIPLHmnoOnqqLE77SrjAwFDvu4e54,249
277
- castor_extractor-0.5.3.dist-info/METADATA,sha256=2xPGq5rdr1j4sqhfZTnK7byh98NSF3si4YafVsSXUJg,6308
278
- castor_extractor-0.5.3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
279
- castor_extractor-0.5.3.dist-info/entry_points.txt,sha256=q_a-iEB9OZF05IUsF43OTLYvgEbHFGp52u9lWtWf9rU,981
280
- castor_extractor-0.5.3.dist-info/RECORD,,
277
+ castor_extractor-0.5.6.dist-info/METADATA,sha256=39OMuyRNBb4gb2T5sdN7kArtLVbZ7kZ0g4YTLWIflX4,6308
278
+ castor_extractor-0.5.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
279
+ castor_extractor-0.5.6.dist-info/entry_points.txt,sha256=q_a-iEB9OZF05IUsF43OTLYvgEbHFGp52u9lWtWf9rU,981
280
+ castor_extractor-0.5.6.dist-info/RECORD,,