marketstack-python-client 1.0.0__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 (81) hide show
  1. marketstack/__init__.py +1 -0
  2. marketstack/client/__init__.py +0 -0
  3. marketstack/client/http.py +36 -0
  4. marketstack/client/marketstack.py +148 -0
  5. marketstack/models/__init__.py +0 -0
  6. marketstack/models/bond.py +47 -0
  7. marketstack/models/cik_code.py +26 -0
  8. marketstack/models/commodity.py +83 -0
  9. marketstack/models/company.py +278 -0
  10. marketstack/models/concept.py +65 -0
  11. marketstack/models/currency.py +23 -0
  12. marketstack/models/dividend.py +27 -0
  13. marketstack/models/eod.py +48 -0
  14. marketstack/models/etf.py +129 -0
  15. marketstack/models/exchange.py +117 -0
  16. marketstack/models/index.py +47 -0
  17. marketstack/models/intraday.py +43 -0
  18. marketstack/models/pagination.py +42 -0
  19. marketstack/models/split.py +24 -0
  20. marketstack/models/stockprice.py +31 -0
  21. marketstack/models/ticker.py +159 -0
  22. marketstack/models/ticker_info.py +197 -0
  23. marketstack/models/timezone.py +21 -0
  24. marketstack/namespaces/__init__.py +0 -0
  25. marketstack/namespaces/bond/__init__.py +1 -0
  26. marketstack/namespaces/bond/bond.py +12 -0
  27. marketstack/namespaces/bondlist/__init__.py +1 -0
  28. marketstack/namespaces/bondlist/bondlist.py +12 -0
  29. marketstack/namespaces/cikcode/__init__.py +1 -0
  30. marketstack/namespaces/cikcode/cikcode.py +12 -0
  31. marketstack/namespaces/commodities/__init__.py +1 -0
  32. marketstack/namespaces/commodities/commodities.py +12 -0
  33. marketstack/namespaces/commoditieshistory/__init__.py +1 -0
  34. marketstack/namespaces/commoditieshistory/commoditieshistory.py +12 -0
  35. marketstack/namespaces/company_facts/__init__.py +1 -0
  36. marketstack/namespaces/company_facts/company_facts.py +12 -0
  37. marketstack/namespaces/companyname/__init__.py +1 -0
  38. marketstack/namespaces/companyname/companyname.py +12 -0
  39. marketstack/namespaces/companyratings/__init__.py +1 -0
  40. marketstack/namespaces/companyratings/companyratings.py +12 -0
  41. marketstack/namespaces/concept/__init__.py +1 -0
  42. marketstack/namespaces/concept/concept.py +12 -0
  43. marketstack/namespaces/currencies/__init__.py +1 -0
  44. marketstack/namespaces/currencies/currencies.py +12 -0
  45. marketstack/namespaces/dividends/__init__.py +1 -0
  46. marketstack/namespaces/dividends/dividends.py +12 -0
  47. marketstack/namespaces/eod/__init__.py +1 -0
  48. marketstack/namespaces/eod/eod.py +20 -0
  49. marketstack/namespaces/etfholdings/__init__.py +1 -0
  50. marketstack/namespaces/etfholdings/etfholdings.py +12 -0
  51. marketstack/namespaces/etflist/__init__.py +1 -0
  52. marketstack/namespaces/etflist/etflist.py +12 -0
  53. marketstack/namespaces/exchanges/__init__.py +1 -0
  54. marketstack/namespaces/exchanges/exchanges.py +109 -0
  55. marketstack/namespaces/frames/__init__.py +1 -0
  56. marketstack/namespaces/frames/frames.py +12 -0
  57. marketstack/namespaces/indexinfo/__init__.py +1 -0
  58. marketstack/namespaces/indexinfo/indexinfo.py +12 -0
  59. marketstack/namespaces/indexlist/__init__.py +1 -0
  60. marketstack/namespaces/indexlist/indexlist.py +12 -0
  61. marketstack/namespaces/intraday/__init__.py +1 -0
  62. marketstack/namespaces/intraday/intraday.py +20 -0
  63. marketstack/namespaces/splits/__init__.py +1 -0
  64. marketstack/namespaces/splits/splits.py +12 -0
  65. marketstack/namespaces/stockprice/__init__.py +1 -0
  66. marketstack/namespaces/stockprice/stockprice.py +12 -0
  67. marketstack/namespaces/submissions/__init__.py +1 -0
  68. marketstack/namespaces/submissions/submissions.py +12 -0
  69. marketstack/namespaces/tickerinfo/__init__.py +1 -0
  70. marketstack/namespaces/tickerinfo/tickerinfo.py +12 -0
  71. marketstack/namespaces/tickers/__init__.py +1 -0
  72. marketstack/namespaces/tickers/tickers.py +150 -0
  73. marketstack/namespaces/tickerslist/__init__.py +1 -0
  74. marketstack/namespaces/tickerslist/tickerslist.py +12 -0
  75. marketstack/namespaces/timezones/__init__.py +1 -0
  76. marketstack/namespaces/timezones/timezones.py +12 -0
  77. marketstack_python_client-1.0.0.dist-info/METADATA +182 -0
  78. marketstack_python_client-1.0.0.dist-info/RECORD +81 -0
  79. marketstack_python_client-1.0.0.dist-info/WHEEL +5 -0
  80. marketstack_python_client-1.0.0.dist-info/licenses/LICENSE +21 -0
  81. marketstack_python_client-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,81 @@
1
+ marketstack/__init__.py,sha256=WsKsodo9PS1cSLOC44PTeUDr69TxA5txWIDPDwBXOd4,44
2
+ marketstack/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ marketstack/client/http.py,sha256=PxC70q3BtLGDCF28BUnmPpM6PI6dLpMDoOMFH4ha3VM,1608
4
+ marketstack/client/marketstack.py,sha256=yiHfGxZzEYQl71fsTQ39b7v6NcfmvNM1KiGgUuTJAKw,4935
5
+ marketstack/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ marketstack/models/bond.py,sha256=kpTkFy_D4BJeWk7Z7QoAvrysOBt1ekChN0Y-KqLRAns,1327
7
+ marketstack/models/cik_code.py,sha256=dlusK6VeQGsKeg9TJ9nAJf87ErNEln_sktECL8LHQnc,677
8
+ marketstack/models/commodity.py,sha256=MmacPvymAQ-wIqA2tievxH8kYqjS5Qd3k2gyoYH2bq0,2313
9
+ marketstack/models/company.py,sha256=KYIJve-VwIIS5Jyd-ar3dbiV8qFpmMWwqbIOuPp8mHk,8473
10
+ marketstack/models/concept.py,sha256=7bwbsOiI0TC9VLA8oi7AjH2neHjsgEU8epYHFEffAfI,1586
11
+ marketstack/models/currency.py,sha256=FJwEenB916c7sUOXI2zXdI2b3f9C7_y8ycLGa5f4lGw,569
12
+ marketstack/models/dividend.py,sha256=Yr9NUMZGzSF4h2hLctdsE7mLOZUu_CAzhoLDBDIyIPg,788
13
+ marketstack/models/eod.py,sha256=W_86a4GU2ywQeJ6j1Jt5xjIKSVpdMVZBRMAD-qUSpBs,1623
14
+ marketstack/models/etf.py,sha256=H0vF1CGBDXa-ZIBV1t0veZtjAYw7QC6GL2UTcy9tHzU,4080
15
+ marketstack/models/exchange.py,sha256=gdIy60zJ7BxFKF43Cgn6ckdgvki1FJgSieJVVJpp-XA,3645
16
+ marketstack/models/index.py,sha256=QDKr1A4m4Ke0D6HFF_S8v_rN05e_-XlcqP4Xf9TIE2A,1207
17
+ marketstack/models/intraday.py,sha256=iUfKquFN5KJItW7JxSB_H_hdOinGotG_b4ZEhlmgZ7M,1459
18
+ marketstack/models/pagination.py,sha256=Y0l6DVw6Pgp1ChwlCj9zLbtEKoUbF3O1t_TpgPUTqGU,1060
19
+ marketstack/models/split.py,sha256=pxs13xtc3iFBB4RHSNi9nWceKt11iyYQelu8OGoItLU,640
20
+ marketstack/models/stockprice.py,sha256=CKJn_xaqoeQiaAVrQf1sc1Od2mkz-ldmxiG8wvmVer8,817
21
+ marketstack/models/ticker.py,sha256=qOrUINl3n9_74pAD8Y4fFWClUfRce-cehq_piypbBuE,5463
22
+ marketstack/models/ticker_info.py,sha256=uG3tqkBnapfuQoadyZKCR8auaTjWXqgkvZb9OMwrl3U,6340
23
+ marketstack/models/timezone.py,sha256=guz4C4d1QD2OXz-6aH0Vx4vJrvWo-W05ucbFOxmTYsc,515
24
+ marketstack/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ marketstack/namespaces/bond/__init__.py,sha256=K40fFhry7s3sxXzqthzoJ80kSfWOF7kXD0iAPG1z8VA,23
26
+ marketstack/namespaces/bond/bond.py,sha256=TrOPkWqfilmfYPp28IxvnqIdj92IKXHvvjCikyJoqD8,470
27
+ marketstack/namespaces/bondlist/__init__.py,sha256=y4yvM6ywucX8LQgJiU-Z-QYT2SkK-euRprCFncwi_kA,31
28
+ marketstack/namespaces/bondlist/bondlist.py,sha256=MNvN8-DFeShl1w0gxdRZIRtXBUvS0LthSLv9nePLx2k,482
29
+ marketstack/namespaces/cikcode/__init__.py,sha256=QDEAhi7_RAmAufvUWtZUD1ok8_OR_B-XVFloRtkTNPo,29
30
+ marketstack/namespaces/cikcode/cikcode.py,sha256=YYwwrQcNLK5C65-Rk-3ecm3AUTUeWrp_s3W3hw5KGos,498
31
+ marketstack/namespaces/commodities/__init__.py,sha256=CSqYK23njLdTsPd0cuCndm3tIjIJL2Epsj_m4DR5DGI,37
32
+ marketstack/namespaces/commodities/commodities.py,sha256=530QwgJzQdSmYvrZ-08TlyO935N-pIAzqqk0vCIyNZE,483
33
+ marketstack/namespaces/commoditieshistory/__init__.py,sha256=cOpheiTsTCGywvb65di43-xQSSyRUpxma688OCmxkrA,51
34
+ marketstack/namespaces/commoditieshistory/commoditieshistory.py,sha256=Z6ZnNQrPn9zedXkbtGm6YDxbImh44qqeMnycn5J0G8A,548
35
+ marketstack/namespaces/company_facts/__init__.py,sha256=MCJeEwDI_wXC0SfrfBInEGmpnA45eCxYbZBIFfZuDFU,40
36
+ marketstack/namespaces/company_facts/company_facts.py,sha256=ga0u13c9hA__e9ZR-1pHHg-il5VGjA52MZmzWU_iwMw,519
37
+ marketstack/namespaces/companyname/__init__.py,sha256=GXW6rsbDt6whFhLvN-Z3bUqeqrt_yN7rjAvkJ8dSBEY,37
38
+ marketstack/namespaces/companyname/companyname.py,sha256=zoXFIGwbEfUb21DhgtBYQ8X4uYfZErnGF1ndcKPG-xQ,511
39
+ marketstack/namespaces/companyratings/__init__.py,sha256=1UcuiRgRjwb4osAPQMjhr3yLPMz-qTna6Wyz6PnDL3M,43
40
+ marketstack/namespaces/companyratings/companyratings.py,sha256=38yxdLJLLiCBFKino-pX1KqrFEFhNZd3fzoIqaVmjXU,507
41
+ marketstack/namespaces/concept/__init__.py,sha256=qiyhApfGfoRTLCtKOXMiNCELZ_ESt_LJMNStVT0dmvM,29
42
+ marketstack/namespaces/concept/concept.py,sha256=Krcd0twxp6lAFK_BtccUXuL6YqrZvE7BOba8QY9QyLU,530
43
+ marketstack/namespaces/currencies/__init__.py,sha256=y5TwTxAU1iBK04-a6LXdc3YDNxDu88pnOCGW7QA9sqg,35
44
+ marketstack/namespaces/currencies/currencies.py,sha256=09cKQdaovbDEKWkT8umypUa75ju-Gdxz2Wm4yMdNHRg,484
45
+ marketstack/namespaces/dividends/__init__.py,sha256=DwVWQ_oFgAujcHc3ND62w82kVvELpn96XmUQjqM6mrg,33
46
+ marketstack/namespaces/dividends/dividends.py,sha256=M2iyqmv0aV_HqXn_RJEO3kvPoG8XHECXJQR8psugZo4,472
47
+ marketstack/namespaces/eod/__init__.py,sha256=oIjC1sRxc7FNhOiOwJ0zROlr6wccrtYP0wlePJUsZdM,21
48
+ marketstack/namespaces/eod/eod.py,sha256=WbjULv2g0HklWN0ztw4psTRJkRADOCIRlCIlxErkvk4,900
49
+ marketstack/namespaces/etfholdings/__init__.py,sha256=Md-1AwxNqbxQ9V8US_wpBKYltr1pytGc_GAQuoUxOFE,37
50
+ marketstack/namespaces/etfholdings/etfholdings.py,sha256=51OEevgr8XVSVartrmea_umujctbrnhdThiCn4PdBRk,479
51
+ marketstack/namespaces/etflist/__init__.py,sha256=h_ZULVY7VoQeFfS0ikL8fWed1BmLyb9Y5K5TdBK29Kk,29
52
+ marketstack/namespaces/etflist/etflist.py,sha256=k5FCjMwcx9inqkH6Q_TCPLOtbo2iGSpNq6pUHIZ89Ds,442
53
+ marketstack/namespaces/exchanges/__init__.py,sha256=RnQS3Vsxqg64aX-BqQhORIwUt_bCC2jgTZLzAnGwHuo,99
54
+ marketstack/namespaces/exchanges/exchanges.py,sha256=FP40nyDOWm2Z1OJsSgjovzuMNUzM8I5L85i1RAXNbZc,4083
55
+ marketstack/namespaces/frames/__init__.py,sha256=zQN8zw1tZ4hZutwADxr7ZHNeuL0E0TfozDk78eAmJlc,27
56
+ marketstack/namespaces/frames/frames.py,sha256=f6I39XEd06kXH5T9UmFw3S3ckzKJvreMX7hLzRFfbM0,509
57
+ marketstack/namespaces/indexinfo/__init__.py,sha256=GKs0Orjp0CpgSk4GaZ2QndG9fBVg4WBV2c_s7lnjDT0,33
58
+ marketstack/namespaces/indexinfo/indexinfo.py,sha256=w7Gbdxg5zaQuxk3I-r0dFiPuWO7HKfeyIQ-X5406MQc,479
59
+ marketstack/namespaces/indexlist/__init__.py,sha256=vWASwxxIQ9oaiF2cYR2HS68QaLVsPyUm8dzoopzYAzk,33
60
+ marketstack/namespaces/indexlist/indexlist.py,sha256=TTuhWFYufH557PgK8ARWbkv_Abez2uEwjRBNOf6eWmw,468
61
+ marketstack/namespaces/intraday/__init__.py,sha256=syhehgtknKWp7SP8XljOemRP9FMdhRgxptaiif4ySG4,31
62
+ marketstack/namespaces/intraday/intraday.py,sha256=7Jem4SaEvabS1AaqI-irWKc4_0BOYWr8Th8qaJvr-po,950
63
+ marketstack/namespaces/splits/__init__.py,sha256=pxNoNDmdXgUNfD6twf4yFAOUgRjxppR9MIAVNg8U10Q,27
64
+ marketstack/namespaces/splits/splits.py,sha256=H1gBnujaPEGOe0AhdIvPZLzQnrSjlIoGL0cKAfxjg7U,445
65
+ marketstack/namespaces/stockprice/__init__.py,sha256=96S77J0-8kNYwEeUpmBlTMry9UuF0irIIVEBuFHu7y4,35
66
+ marketstack/namespaces/stockprice/stockprice.py,sha256=tuvjuyqnU1fviOlfbV3pDcEyaYk-fpr83qWjYR0ZNng,488
67
+ marketstack/namespaces/submissions/__init__.py,sha256=torQ3gCwc_xyDq8Nbwe_a4LPnSAuSk6a50z59UOtOYQ,37
68
+ marketstack/namespaces/submissions/submissions.py,sha256=pqYGUaFMPNBean8KFXYIJuw3KgHdPS1ZDF0p73hmUeU,501
69
+ marketstack/namespaces/tickerinfo/__init__.py,sha256=rNLcSBLWKGQu7U4WxZ7yKCo_eN5VK_P2LBcKDT611nM,35
70
+ marketstack/namespaces/tickerinfo/tickerinfo.py,sha256=PJ5QqOI6gF0xRMnw8LKr1XWPmT__1P_5eO7Rs_EuHH0,486
71
+ marketstack/namespaces/tickers/__init__.py,sha256=OCoI0nNW_DCtmPs5NJFlfysdMw1IBoV7A8SYnJ17stQ,29
72
+ marketstack/namespaces/tickers/tickers.py,sha256=QAL02e3BpxPwBmkmsE-02OjVqn9Ru8D0J_Odskvpljw,5288
73
+ marketstack/namespaces/tickerslist/__init__.py,sha256=z3CSiWxrCYSISAIADyJO67Ge3DwEiCaEboPcc0k3oZ4,37
74
+ marketstack/namespaces/tickerslist/tickerslist.py,sha256=4xcoGDfDeu7cNFS5UpcHeSB8g4AYMYutlHpSe9Y_P60,481
75
+ marketstack/namespaces/timezones/__init__.py,sha256=tYqkfJCERNCmwx8x11XbBjwTQbfqxqlcyeu_qmkSdYw,33
76
+ marketstack/namespaces/timezones/timezones.py,sha256=hrT0ev0vwXA_ZRx6ETmKEWcLo2pQhDi_Aj_WG5UHrGA,476
77
+ marketstack_python_client-1.0.0.dist-info/licenses/LICENSE,sha256=xmxcITkr7-m7jHXtTncF0Xlptti5ZLKa49ezBr-hSAg,1073
78
+ marketstack_python_client-1.0.0.dist-info/METADATA,sha256=S-2DUwrJrlQo3uAnfQvwb0jnlWzTHrHbEkNDlMpf01Y,5700
79
+ marketstack_python_client-1.0.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
80
+ marketstack_python_client-1.0.0.dist-info/top_level.txt,sha256=1p1sbB7SMIh1ijnCB_OuTb7zy4b0NXeTd5YbFnvEVcg,12
81
+ marketstack_python_client-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 01Joseph-Hwang10
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ marketstack