groundx 2.4.5__py3-none-any.whl → 2.4.9__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 groundx might be problematic. Click here for more details.

Files changed (36) hide show
  1. groundx/core/client_wrapper.py +2 -2
  2. groundx/extract/__init__.py +38 -0
  3. groundx/extract/agents/__init__.py +7 -0
  4. groundx/extract/agents/agent.py +202 -0
  5. groundx/extract/classes/__init__.py +27 -0
  6. groundx/extract/classes/agent.py +22 -0
  7. groundx/extract/classes/api.py +15 -0
  8. groundx/extract/classes/document.py +311 -0
  9. groundx/extract/classes/field.py +88 -0
  10. groundx/extract/classes/groundx.py +123 -0
  11. groundx/extract/classes/post_process.py +33 -0
  12. groundx/extract/classes/prompt.py +36 -0
  13. groundx/extract/classes/settings.py +169 -0
  14. groundx/extract/classes/test_document.py +126 -0
  15. groundx/extract/classes/test_field.py +43 -0
  16. groundx/extract/classes/test_groundx.py +188 -0
  17. groundx/extract/classes/test_prompt.py +68 -0
  18. groundx/extract/classes/test_settings.py +515 -0
  19. groundx/extract/classes/test_utility.py +81 -0
  20. groundx/extract/classes/utility.py +193 -0
  21. groundx/extract/services/.DS_Store +0 -0
  22. groundx/extract/services/__init__.py +14 -0
  23. groundx/extract/services/csv.py +76 -0
  24. groundx/extract/services/logger.py +127 -0
  25. groundx/extract/services/logging_cfg.py +55 -0
  26. groundx/extract/services/ratelimit.py +104 -0
  27. groundx/extract/services/sheets_client.py +160 -0
  28. groundx/extract/services/status.py +197 -0
  29. groundx/extract/services/upload.py +73 -0
  30. groundx/extract/services/upload_minio.py +122 -0
  31. groundx/extract/services/upload_s3.py +84 -0
  32. groundx/extract/services/utility.py +52 -0
  33. {groundx-2.4.5.dist-info → groundx-2.4.9.dist-info}/METADATA +1 -1
  34. {groundx-2.4.5.dist-info → groundx-2.4.9.dist-info}/RECORD +36 -5
  35. {groundx-2.4.5.dist-info → groundx-2.4.9.dist-info}/LICENSE +0 -0
  36. {groundx-2.4.5.dist-info → groundx-2.4.9.dist-info}/WHEEL +0 -0
@@ -5,7 +5,7 @@ groundx/buckets/raw_client.py,sha256=T2Ty5obN7eHbaxHGAimzjM8MGOmSOQEckhciyZkzcjE
5
5
  groundx/client.py,sha256=FsVhPSZ1kd70pOVv37zTbNSwBM7XdttSx4aEPobPoew,6412
6
6
  groundx/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
7
7
  groundx/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
8
- groundx/core/client_wrapper.py,sha256=O5ORs6xeftacvpxBge_Uhita6YF6o1x6FtjIiJ5KXZg,1822
8
+ groundx/core/client_wrapper.py,sha256=zOajw3bdIIG9tpH6bmyQBnZ-NKaJADOrC33VXvtlWVE,1822
9
9
  groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
10
10
  groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
11
11
  groundx/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -28,6 +28,37 @@ groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
28
28
  groundx/errors/__init__.py,sha256=Ua3Z6OWyRhcgrq0FSXOpwmOc4RxyTgzP2LXbkzGbMhk,234
29
29
  groundx/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
30
30
  groundx/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
31
+ groundx/extract/__init__.py,sha256=zY16_7ZId6Q1sriEWAYZ9ZOJREuERkEqQkILZRZR-YA,762
32
+ groundx/extract/agents/__init__.py,sha256=i95YB5jxXog8gn02t5c2to2zF00EZMiKjeukXZQt36g,90
33
+ groundx/extract/agents/agent.py,sha256=A8yjswurw88wcFiNCGV4XgOuhdcN01KBfTRC6ER30_0,6157
34
+ groundx/extract/classes/__init__.py,sha256=HIcCbkC7IdKBwV9KgL7HPQoIPsNkRPFa3ijEM7a2bSo,619
35
+ groundx/extract/classes/agent.py,sha256=4Uo6vca9s_1AcDv8Y2XSQiu5awOhQECgE55-kWUx2-8,677
36
+ groundx/extract/classes/api.py,sha256=fgCwua4xf8oK2J8p-LYAFyeEpbGg1kETEUAGSH60lr4,345
37
+ groundx/extract/classes/document.py,sha256=QL5A_WuAWReA3bfy6fzmQlo2AIhqjtl_eiYH9WkFxbU,9743
38
+ groundx/extract/classes/field.py,sha256=x8Y8MIytoeWeU6tpvczw2sLaIlQzCEvfRiO_-PjWEXE,2764
39
+ groundx/extract/classes/groundx.py,sha256=lsOS9rkVqpZBZ8VsJaf06pyEv1Vk6BIoOKSRlQ2ei5k,3961
40
+ groundx/extract/classes/post_process.py,sha256=K558NRMBYSfxfrAQrCYw9Ay5p57A6fRJWpzT9e_CN9U,669
41
+ groundx/extract/classes/prompt.py,sha256=3lcEqJrJf21kgWvYEvK0SzMclRKYIbf7G-Orsm4Rw6g,941
42
+ groundx/extract/classes/settings.py,sha256=oyw7cWgwqhPUx4d7sokp7MuCwyO_waZDbR9zFYWOb1k,4287
43
+ groundx/extract/classes/test_document.py,sha256=MiItBqoMJ-XthE1RuPa-uOPf5k2QUHuqvULlFZ4LO6c,3875
44
+ groundx/extract/classes/test_field.py,sha256=QVUGxRGOGl16kOmRHPg0RBCh9o5CB7GNN1h1GBNKLd8,1232
45
+ groundx/extract/classes/test_groundx.py,sha256=Lvkv_JdaPUXCrbTcBbcroEbwWIkCRSALuhXxFS-rdK8,7426
46
+ groundx/extract/classes/test_prompt.py,sha256=U8rKlxrDUMr4MpwKnurD1v1Ngw6NLPHRS8dOn2h0JcU,2240
47
+ groundx/extract/classes/test_settings.py,sha256=n56UMaIcK7_rN5dUx1CNXsn0Yy7CI4g9jWDwLdl9NKE,18861
48
+ groundx/extract/classes/test_utility.py,sha256=dLEWAf3Di3h-ayZtXHq5PtztvVi5XRx_Vj_44jaAtK0,3087
49
+ groundx/extract/classes/utility.py,sha256=HJ11OpIlqcPJfIXQd-uNa2xB0IjPotgrhU_A_GwkspQ,4990
50
+ groundx/extract/services/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
51
+ groundx/extract/services/__init__.py,sha256=Zf-PjjmUo5Nv1BaEQOjaFhI3QtOn7xSZo0Mccf9DOg0,249
52
+ groundx/extract/services/csv.py,sha256=9ugPXvJYioM42wE2o4uXWyIlHMqkK_F6dCDpL_kyCzU,2132
53
+ groundx/extract/services/logger.py,sha256=RdVu-eceDNZXEEbio_t8Vw3Ayjq9SaH3IXZJmBuZotA,3226
54
+ groundx/extract/services/logging_cfg.py,sha256=pg-DZRNc751m-tjvHqZf9PbMPVVnHN6az7AiytCDstU,1603
55
+ groundx/extract/services/ratelimit.py,sha256=po-g1qY73cmQk02cxQ_VokLM3yLLXbBEtg85yolpRww,3205
56
+ groundx/extract/services/sheets_client.py,sha256=jBle7KT2T5-ZPLRNio5mP_b-UPzC7TpFGfTuJ-rTVQA,4858
57
+ groundx/extract/services/status.py,sha256=oReCrw-vmZ3FEfjhGR1Bz0qmNr612EqMCuJHsMNnYIo,6699
58
+ groundx/extract/services/upload.py,sha256=CS0o01n6rMugx6LYDPZerbaTHG4SV-UAOMxU_wSrAvY,1867
59
+ groundx/extract/services/upload_minio.py,sha256=nJh9KEOOI98ZVSa7cAtHpslmsN1m5PJXrun6LEJdC7M,3853
60
+ groundx/extract/services/upload_s3.py,sha256=cZtf5cYvbyh991ZdddMbW5CIKtOF9-oONy76-GhCsC4,2309
61
+ groundx/extract/services/utility.py,sha256=nlAVgSFpzo0LPrm5dqexn2dmDa3cFmAmJpVHFE2rgnM,1321
31
62
  groundx/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
32
63
  groundx/groups/client.py,sha256=QsZcOXVPHAdUPYPsfuFiPOkyssapSWLZYVD82NWmrSE,16810
33
64
  groundx/groups/raw_client.py,sha256=nP9yFh7MexjDUQU8TtB5j-HAmZJjQWOd78hu-KeMnRs,35111
@@ -90,7 +121,7 @@ groundx/types/subscription_detail.py,sha256=GEEivqyiLsZtd8Ow7mqqwF1y0m0tHD-t9r9d
90
121
  groundx/types/subscription_detail_meters.py,sha256=vGqiR2uupVh5177DfOghjoe5mwzVhoWljKzPF-twUc0,794
91
122
  groundx/types/website_source.py,sha256=53jWDBtSrJVOsBVtVbZbjhEAsd0QGkXa7IuKO4AooLs,1542
92
123
  groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
93
- groundx-2.4.5.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
94
- groundx-2.4.5.dist-info/METADATA,sha256=xFTBJm5WxK0DbOlrSmudJB49sGALK940yV_WSUGk-CQ,5197
95
- groundx-2.4.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
96
- groundx-2.4.5.dist-info/RECORD,,
124
+ groundx-2.4.9.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
125
+ groundx-2.4.9.dist-info/METADATA,sha256=oEt6YHIegZ41wHPrYsqWfWRFHnItoUIrKPbmSC98sOk,5197
126
+ groundx-2.4.9.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
127
+ groundx-2.4.9.dist-info/RECORD,,