byteforge-crypto-commons 0.1__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.
@@ -0,0 +1,10 @@
1
+ .DS_Store
2
+ *.pyc
3
+ *.sqlite
4
+ lib
5
+ bin
6
+ pyvenv.cfg
7
+ .vscode
8
+ main.py
9
+ build_publish.sh
10
+ dist
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2014-2017 Martin Simon
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,330 @@
1
+ Metadata-Version: 2.4
2
+ Name: byteforge-crypto-commons
3
+ Version: 0.1
4
+ Summary: Common models and dependencies for crypto projects.
5
+ Project-URL: Homepage, https://github.com/jmazzahacks/byteforge-crypto-commons
6
+ Project-URL: Issues, https://github.com/jmazzahacks/byteforge-crypto-commons/issues
7
+ Author: Jason Byteforge
8
+ License: Apache License
9
+ Version 2.0, January 2004
10
+ http://www.apache.org/licenses/
11
+
12
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13
+
14
+ 1. Definitions.
15
+
16
+ "License" shall mean the terms and conditions for use, reproduction,
17
+ and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by
20
+ the copyright owner that is granting the License.
21
+
22
+ "Legal Entity" shall mean the union of the acting entity and all
23
+ other entities that control, are controlled by, or are under common
24
+ control with that entity. For the purposes of this definition,
25
+ "control" means (i) the power, direct or indirect, to cause the
26
+ direction or management of such entity, whether by contract or
27
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
28
+ outstanding shares, or (iii) beneficial ownership of such entity.
29
+
30
+ "You" (or "Your") shall mean an individual or Legal Entity
31
+ exercising permissions granted by this License.
32
+
33
+ "Source" form shall mean the preferred form for making modifications,
34
+ including but not limited to software source code, documentation
35
+ source, and configuration files.
36
+
37
+ "Object" form shall mean any form resulting from mechanical
38
+ transformation or translation of a Source form, including but
39
+ not limited to compiled object code, generated documentation,
40
+ and conversions to other media types.
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+ "Contribution" shall mean any work of authorship, including
56
+ the original version of the Work and any modifications or additions
57
+ to that Work or Derivative Works thereof, that is intentionally
58
+ submitted to Licensor for inclusion in the Work by the copyright owner
59
+ or by an individual or Legal Entity authorized to submit on behalf of
60
+ the copyright owner. For the purposes of this definition, "submitted"
61
+ means any form of electronic, verbal, or written communication sent
62
+ to the Licensor or its representatives, including but not limited to
63
+ communication on electronic mailing lists, source code control systems,
64
+ and issue tracking systems that are managed by, or on behalf of, the
65
+ Licensor for the purpose of discussing and improving the Work, but
66
+ excluding communication that is conspicuously marked or otherwise
67
+ designated in writing by the copyright owner as "Not a Contribution."
68
+
69
+ "Contributor" shall mean Licensor and any individual or Legal Entity
70
+ on behalf of whom a Contribution has been received by Licensor and
71
+ subsequently incorporated within the Work.
72
+
73
+ 2. Grant of Copyright License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ copyright license to reproduce, prepare Derivative Works of,
77
+ publicly display, publicly perform, sublicense, and distribute the
78
+ Work and such Derivative Works in Source or Object form.
79
+
80
+ 3. Grant of Patent License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ (except as stated in this section) patent license to make, have made,
84
+ use, offer to sell, sell, import, and otherwise transfer the Work,
85
+ where such license applies only to those patent claims licensable
86
+ by such Contributor that are necessarily infringed by their
87
+ Contribution(s) alone or by combination of their Contribution(s)
88
+ with the Work to which such Contribution(s) was submitted. If You
89
+ institute patent litigation against any entity (including a
90
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
91
+ or a Contribution incorporated within the Work constitutes direct
92
+ or contributory patent infringement, then any patent licenses
93
+ granted to You under this License for that Work shall terminate
94
+ as of the date such litigation is filed.
95
+
96
+ 4. Redistribution. You may reproduce and distribute copies of the
97
+ Work or Derivative Works thereof in any medium, with or without
98
+ modifications, and in Source or Object form, provided that You
99
+ meet the following conditions:
100
+
101
+ (a) You must give any other recipients of the Work or
102
+ Derivative Works a copy of this License; and
103
+
104
+ (b) You must cause any modified files to carry prominent notices
105
+ stating that You changed the files; and
106
+
107
+ (c) You must retain, in the Source form of any Derivative Works
108
+ that You distribute, all copyright, patent, trademark, and
109
+ attribution notices from the Source form of the Work,
110
+ excluding those notices that do not pertain to any part of
111
+ the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its
114
+ distribution, then any Derivative Works that You distribute must
115
+ include a readable copy of the attribution notices contained
116
+ within such NOTICE file, excluding those notices that do not
117
+ pertain to any part of the Derivative Works, in at least one
118
+ of the following places: within a NOTICE text file distributed
119
+ as part of the Derivative Works; within the Source form or
120
+ documentation, if provided along with the Derivative Works; or,
121
+ within a display generated by the Derivative Works, if and
122
+ wherever such third-party notices normally appear. The contents
123
+ of the NOTICE file are for informational purposes only and
124
+ do not modify the License. You may add Your own attribution
125
+ notices within Derivative Works that You distribute, alongside
126
+ or as an addendum to the NOTICE text from the Work, provided
127
+ that such additional attribution notices cannot be construed
128
+ as modifying the License.
129
+
130
+ You may add Your own copyright statement to Your modifications and
131
+ may provide additional or different license terms and conditions
132
+ for use, reproduction, or distribution of Your modifications, or
133
+ for any such Derivative Works as a whole, provided Your use,
134
+ reproduction, and distribution of the Work otherwise complies with
135
+ the conditions stated in this License.
136
+
137
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
138
+ any Contribution intentionally submitted for inclusion in the Work
139
+ by You to the Licensor shall be under the terms and conditions of
140
+ this License, without any additional terms or conditions.
141
+ Notwithstanding the above, nothing herein shall supersede or modify
142
+ the terms of any separate license agreement you may have executed
143
+ with Licensor regarding such Contributions.
144
+
145
+ 6. Trademarks. This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty. Unless required by applicable law or
151
+ agreed to in writing, Licensor provides the Work (and each
152
+ Contributor provides its Contributions) on an "AS IS" BASIS,
153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
154
+ implied, including, without limitation, any warranties or conditions
155
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
156
+ PARTICULAR PURPOSE. You are solely responsible for determining the
157
+ appropriateness of using or redistributing the Work and assume any
158
+ risks associated with Your exercise of permissions under this License.
159
+
160
+ 8. Limitation of Liability. In no event and under no legal theory,
161
+ whether in tort (including negligence), contract, or otherwise,
162
+ unless required by applicable law (such as deliberate and grossly
163
+ negligent acts) or agreed to in writing, shall any Contributor be
164
+ liable to You for damages, including any direct, indirect, special,
165
+ incidental, or consequential damages of any character arising as a
166
+ result of this License or out of the use or inability to use the
167
+ Work (including but not limited to damages for loss of goodwill,
168
+ work stoppage, computer failure or malfunction, or any and all
169
+ other commercial damages or losses), even if such Contributor
170
+ has been advised of the possibility of such damages.
171
+
172
+ 9. Accepting Warranty or Additional Liability. While redistributing
173
+ the Work or Derivative Works thereof, You may choose to offer,
174
+ and charge a fee for, acceptance of support, warranty, indemnity,
175
+ or other liability obligations and/or rights consistent with this
176
+ License. However, in accepting such obligations, You may act only
177
+ on Your own behalf and on Your sole responsibility, not on behalf
178
+ of any other Contributor, and only if You agree to indemnify,
179
+ defend, and hold each Contributor harmless for any liability
180
+ incurred by, or claims asserted against, such Contributor by reason
181
+ of your accepting any such warranty or additional liability.
182
+
183
+ END OF TERMS AND CONDITIONS
184
+
185
+ APPENDIX: How to apply the Apache License to your work.
186
+
187
+ To apply the Apache License to your work, attach the following
188
+ boilerplate notice, with the fields enclosed by brackets "{}"
189
+ replaced with your own identifying information. (Don't include
190
+ the brackets!) The text should be enclosed in the appropriate
191
+ comment syntax for the file format. We also recommend that a
192
+ file or class name and description of purpose be included on the
193
+ same "printed page" as the copyright notice for easier
194
+ identification within third-party archives.
195
+
196
+ Copyright 2014-2017 Martin Simon
197
+
198
+ Licensed under the Apache License, Version 2.0 (the "License");
199
+ you may not use this file except in compliance with the License.
200
+ You may obtain a copy of the License at
201
+
202
+ http://www.apache.org/licenses/LICENSE-2.0
203
+
204
+ Unless required by applicable law or agreed to in writing, software
205
+ distributed under the License is distributed on an "AS IS" BASIS,
206
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
+ See the License for the specific language governing permissions and
208
+ limitations under the License.
209
+ License-File: LICENSE
210
+ Keywords: API,byteforge,byteforge-coinmarketcap,cryptocurrency,crytpo
211
+ Classifier: License :: OSI Approved :: MIT License
212
+ Classifier: Operating System :: OS Independent
213
+ Classifier: Programming Language :: Python :: 3
214
+ Requires-Python: >=3.8
215
+ Requires-Dist: python-dateutil
216
+ Description-Content-Type: text/markdown
217
+
218
+ # ByteForge Crypto Commons
219
+
220
+ A Python library providing common models and utilities for cryptocurrency projects. This library serves as a foundation for building cryptocurrency-related applications by providing standardized data models and types.
221
+
222
+ ## Features
223
+
224
+ - **Standardized Data Models**: Well-defined Python dataclasses for representing cryptocurrency data
225
+ - **Type Safety**: Full type hints and documentation for all models
226
+ - **Comprehensive Market Data**: Support for various market metrics and statistics
227
+ - **Flexible Design**: Optional fields for extended data while maintaining core required fields
228
+
229
+ ## Installation
230
+
231
+ ```bash
232
+ pip install byteforge-crypto-commons
233
+ ```
234
+
235
+ ## Usage
236
+
237
+ ### Token State
238
+
239
+ The `TokenState` class represents the complete state of a cryptocurrency token at a specific moment in time:
240
+
241
+ ```python
242
+ from crypto_commons.types.token_state import TokenState
243
+ from crypto_commons.types.quote import Quote
244
+ import datetime
245
+
246
+ # Create a quote for USD
247
+ quote = Quote(
248
+ base_currency="USD",
249
+ price=50000.0,
250
+ volume_24h=1000000000.0,
251
+ percent_change_1h=1.5,
252
+ percent_change_24h=5.0,
253
+ percent_change_7d=10.0,
254
+ percent_change_30d=20.0,
255
+ market_cap=1000000000000.0,
256
+ last_updated=datetime.datetime.now()
257
+ )
258
+
259
+ # Create a token state
260
+ token_state = TokenState(
261
+ id=1,
262
+ name="Bitcoin",
263
+ symbol="BTC",
264
+ timestamp=int(datetime.datetime.now().timestamp()),
265
+ quote_map={"USD": quote}
266
+ )
267
+ ```
268
+
269
+ ### Quote
270
+
271
+ The `Quote` class represents market data for a cryptocurrency in a specific currency:
272
+
273
+ ```python
274
+ from crypto_commons.types.quote import Quote
275
+ import datetime
276
+
277
+ quote = Quote(
278
+ base_currency="USD",
279
+ price=50000.0,
280
+ volume_24h=1000000000.0,
281
+ percent_change_1h=1.5,
282
+ percent_change_24h=5.0,
283
+ percent_change_7d=10.0,
284
+ percent_change_30d=20.0,
285
+ market_cap=1000000000000.0,
286
+ last_updated=datetime.datetime.now()
287
+ )
288
+ ```
289
+
290
+ ## Data Models
291
+
292
+ ### TokenState
293
+
294
+ Represents the complete state of a cryptocurrency token, including:
295
+ - Basic information (id, name, symbol)
296
+ - Market data through Quote objects
297
+ - Supply metrics (circulating, total, max supply)
298
+ - Status indicators (is_active, is_fiat)
299
+ - Additional metadata (tags, platform, creation date)
300
+
301
+ ### Quote
302
+
303
+ Represents market data for a cryptocurrency in a specific currency, including:
304
+ - Price and volume data
305
+ - Market capitalization
306
+ - Percentage changes over various time periods
307
+ - Supply metrics
308
+ - Additional market statistics
309
+
310
+ ## Requirements
311
+
312
+ - Python 3.8 or higher
313
+ - python-dateutil
314
+
315
+ ## License
316
+
317
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
318
+
319
+ ## Contributing
320
+
321
+ Contributions are welcome! Please feel free to submit a Pull Request.
322
+
323
+ ## Author
324
+
325
+ - Jason Byteforge
326
+
327
+ ## Project Links
328
+
329
+ - [GitHub Repository](https://github.com/jmazzahacks/byteforge-crypto-commons)
330
+ - [Issue Tracker](https://github.com/jmazzahacks/byteforge-crypto-commons/issues)
@@ -0,0 +1,113 @@
1
+ # ByteForge Crypto Commons
2
+
3
+ A Python library providing common models and utilities for cryptocurrency projects. This library serves as a foundation for building cryptocurrency-related applications by providing standardized data models and types.
4
+
5
+ ## Features
6
+
7
+ - **Standardized Data Models**: Well-defined Python dataclasses for representing cryptocurrency data
8
+ - **Type Safety**: Full type hints and documentation for all models
9
+ - **Comprehensive Market Data**: Support for various market metrics and statistics
10
+ - **Flexible Design**: Optional fields for extended data while maintaining core required fields
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pip install byteforge-crypto-commons
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ### Token State
21
+
22
+ The `TokenState` class represents the complete state of a cryptocurrency token at a specific moment in time:
23
+
24
+ ```python
25
+ from crypto_commons.types.token_state import TokenState
26
+ from crypto_commons.types.quote import Quote
27
+ import datetime
28
+
29
+ # Create a quote for USD
30
+ quote = Quote(
31
+ base_currency="USD",
32
+ price=50000.0,
33
+ volume_24h=1000000000.0,
34
+ percent_change_1h=1.5,
35
+ percent_change_24h=5.0,
36
+ percent_change_7d=10.0,
37
+ percent_change_30d=20.0,
38
+ market_cap=1000000000000.0,
39
+ last_updated=datetime.datetime.now()
40
+ )
41
+
42
+ # Create a token state
43
+ token_state = TokenState(
44
+ id=1,
45
+ name="Bitcoin",
46
+ symbol="BTC",
47
+ timestamp=int(datetime.datetime.now().timestamp()),
48
+ quote_map={"USD": quote}
49
+ )
50
+ ```
51
+
52
+ ### Quote
53
+
54
+ The `Quote` class represents market data for a cryptocurrency in a specific currency:
55
+
56
+ ```python
57
+ from crypto_commons.types.quote import Quote
58
+ import datetime
59
+
60
+ quote = Quote(
61
+ base_currency="USD",
62
+ price=50000.0,
63
+ volume_24h=1000000000.0,
64
+ percent_change_1h=1.5,
65
+ percent_change_24h=5.0,
66
+ percent_change_7d=10.0,
67
+ percent_change_30d=20.0,
68
+ market_cap=1000000000000.0,
69
+ last_updated=datetime.datetime.now()
70
+ )
71
+ ```
72
+
73
+ ## Data Models
74
+
75
+ ### TokenState
76
+
77
+ Represents the complete state of a cryptocurrency token, including:
78
+ - Basic information (id, name, symbol)
79
+ - Market data through Quote objects
80
+ - Supply metrics (circulating, total, max supply)
81
+ - Status indicators (is_active, is_fiat)
82
+ - Additional metadata (tags, platform, creation date)
83
+
84
+ ### Quote
85
+
86
+ Represents market data for a cryptocurrency in a specific currency, including:
87
+ - Price and volume data
88
+ - Market capitalization
89
+ - Percentage changes over various time periods
90
+ - Supply metrics
91
+ - Additional market statistics
92
+
93
+ ## Requirements
94
+
95
+ - Python 3.8 or higher
96
+ - python-dateutil
97
+
98
+ ## License
99
+
100
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
101
+
102
+ ## Contributing
103
+
104
+ Contributions are welcome! Please feel free to submit a Pull Request.
105
+
106
+ ## Author
107
+
108
+ - Jason Byteforge
109
+
110
+ ## Project Links
111
+
112
+ - [GitHub Repository](https://github.com/jmazzahacks/byteforge-crypto-commons)
113
+ - [Issue Tracker](https://github.com/jmazzahacks/byteforge-crypto-commons/issues)
@@ -0,0 +1,62 @@
1
+ from dataclasses import dataclass
2
+ from typing import Optional
3
+ import datetime
4
+
5
+ @dataclass
6
+ class Quote:
7
+ """Represents a cryptocurrency quote with market data and statistics.
8
+
9
+ This class encapsulates all relevant market data for a cryptocurrency, including
10
+ price, volume, market cap, and various percentage changes over different time periods.
11
+ It's designed to handle both required core metrics and optional extended metrics.
12
+
13
+ Attributes:
14
+ base_currency (str): The cryptocurrency symbol (e.g., 'BTC', 'ETH').
15
+ price (float): Current price of the cryptocurrency.
16
+ volume_24h (float): 24-hour trading volume in the base currency.
17
+ percent_change_1h (float): Price change percentage over the last hour.
18
+ percent_change_24h (float): Price change percentage over the last 24 hours.
19
+ percent_change_7d (float): Price change percentage over the last 7 days.
20
+ percent_change_30d (float): Price change percentage over the last 30 days.
21
+ market_cap (float): Total market capitalization of the cryptocurrency.
22
+ last_updated (datetime.datetime): Timestamp of when this quote was last updated.
23
+ volume_change_24h (float): Change in 24-hour volume compared to previous period.
24
+ percent_change_60d (float): Price change percentage over the last 60 days.
25
+ percent_change_90d (float): Price change percentage over the last 90 days.
26
+ market_cap_dominance (float): Percentage of total crypto market cap this currency represents.
27
+ fully_diluted_market_cap (float): Market cap if all tokens were in circulation.
28
+ tvl (Optional[float]): Total Value Locked in DeFi protocols, if applicable.
29
+ volume_30d (Optional[float]): 30-day trading volume.
30
+ volume_30d_reported (Optional[float]): Reported 30-day trading volume from exchanges.
31
+ volume_24h_reported (Optional[float]): Reported 24-hour trading volume from exchanges.
32
+ volume_7d_reported (Optional[float]): Reported 7-day trading volume from exchanges.
33
+ market_cap_by_total_supply (Optional[float]): Market cap calculated using total supply.
34
+ volume_7d (Optional[float]): 7-day trading volume.
35
+ total_supply (Optional[float]): Total number of tokens that will ever exist.
36
+ circulating_supply (Optional[float]): Number of tokens currently in circulation.
37
+ """
38
+ base_currency: str
39
+ price: float
40
+ volume_24h: float
41
+ percent_change_1h: float
42
+ percent_change_24h: float
43
+ percent_change_7d: float
44
+ percent_change_30d: float
45
+ market_cap: float
46
+ last_updated: datetime.datetime
47
+
48
+ # Now all optional/default parameters follow
49
+ volume_change_24h: float = 0.0
50
+ percent_change_60d: float = 0.0
51
+ percent_change_90d: float = 0.0
52
+ market_cap_dominance: float = 0.0
53
+ fully_diluted_market_cap: float = 0.0
54
+ tvl: Optional[float] = None
55
+ volume_30d: Optional[float] = None
56
+ volume_30d_reported: Optional[float] = None
57
+ volume_24h_reported: Optional[float] = None
58
+ volume_7d_reported: Optional[float] = None
59
+ market_cap_by_total_supply: Optional[float] = None
60
+ volume_7d: Optional[float] = None
61
+ total_supply: Optional[float] = None
62
+ circulating_supply: Optional[float] = None
@@ -0,0 +1,64 @@
1
+ from dataclasses import dataclass
2
+ from typing import Dict, List, Optional
3
+ import datetime
4
+ from .quote import Quote
5
+
6
+ @dataclass
7
+ class TokenState:
8
+ """Represents the state of a token at a specific moment in time.
9
+
10
+ This class captures all relevant information about a cryptocurrency token at a specific timestamp,
11
+ including its basic information, market data, supply metrics, and status indicators.
12
+
13
+ Required Fields:
14
+ id: Unique identifier for the token
15
+ name: Full name of the token
16
+ symbol: Trading symbol of the token
17
+ timestamp: The specific moment in time this token state represents
18
+ quote_map: Dictionary mapping currency codes to Quote objects containing price and volume data
19
+
20
+ Optional Fields:
21
+ last_updated: When this data was last updated in a source system
22
+ infinite_supply: Whether the token has an infinite supply (e.g., ETH)
23
+ slug: URL-friendly version of the token name
24
+ num_market_pairs: Number of active trading pairs for this token
25
+ creation_date: When the token was first created/launched (e.g., Bitcoin's genesis block)
26
+ tags: List of categories or labels associated with the token
27
+ max_supply: Maximum possible supply of the token
28
+ circulating_supply: Number of tokens currently in circulation
29
+ total_supply: Total number of tokens that exist (including locked/unreleased)
30
+ platform: Blockchain platform the token is built on (if applicable)
31
+ cmc_rank: CoinMarketCap ranking of the token
32
+ self_reported_circulating_supply: Circulating supply as reported by the token team
33
+ self_reported_market_cap: Market cap as reported by the token team
34
+ tvl_ratio: Total Value Locked ratio
35
+ is_market_cap_included_in_calc: Whether this token's market cap is included in total market calculations
36
+ is_active: Whether the token is currently active/trading
37
+ is_fiat: Whether this is a fiat currency
38
+ """
39
+ id: int
40
+ name: str
41
+ symbol: str
42
+ timestamp: int # The specific moment in time this token state represents
43
+ quote_map: Dict[str, Quote]
44
+ last_updated: Optional[datetime.datetime] = None # When this data was last updated in source system
45
+
46
+ infinite_supply: bool = None
47
+ slug: Optional[str] = None
48
+ num_market_pairs: Optional[int] = None
49
+ creation_date: Optional[datetime.datetime] = None # When the token was first created/launched (e.g. Bitcoin's genesis block)
50
+ tags: Optional[List[str]] = None
51
+ max_supply: Optional[int] = None
52
+ circulating_supply: Optional[int] = None
53
+ total_supply: Optional[float] = None
54
+ platform: Optional[str] = None
55
+ cmc_rank: Optional[int] = None
56
+ self_reported_circulating_supply: Optional[int] = None
57
+ self_reported_market_cap: Optional[float] = None
58
+ tvl_ratio: Optional[float] = None
59
+ is_market_cap_included_in_calc: Optional[bool] = None
60
+ is_active: Optional[bool] = None
61
+ is_fiat: Optional[bool] = None
62
+
63
+
64
+
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "byteforge-crypto-commons"
3
+ version = "0.1"
4
+ description = "Common models and dependencies for crypto projects."
5
+ readme = "README.md"
6
+ license = { file="LICENSE" }
7
+ keywords = ["cryptocurrency", "API", "byteforge-coinmarketcap", "crytpo", "byteforge"]
8
+ requires-python = ">=3.8"
9
+ classifiers = [
10
+ "Programming Language :: Python :: 3",
11
+ "License :: OSI Approved :: MIT License",
12
+ "Operating System :: OS Independent",
13
+ ]
14
+ authors = [
15
+ { name = "Jason Byteforge"}
16
+ ]
17
+ dependencies = [
18
+ "python-dateutil"
19
+ ]
20
+
21
+ [build-system]
22
+ requires = ["hatchling"]
23
+ build-backend = "hatchling.build"
24
+
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/jmazzahacks/byteforge-crypto-commons"
28
+ Issues = "https://github.com/jmazzahacks/byteforge-crypto-commons/issues"
29
+
30
+ [tool.hatch.build.targets.wheel]
31
+ packages = ["crypto_commons"]
@@ -0,0 +1 @@
1
+ python-dateutil