bifrostsdk 1.0.0__py3-none-any.whl → 2.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 (52) hide show
  1. {byfrost → bifrostsdk}/bifrost.py +1 -1
  2. {byfrost → bifrostsdk}/gcs/gcs.py +2 -2
  3. {byfrost → bifrostsdk}/pinata/pinata.py +2 -2
  4. {byfrost → bifrostsdk}/s3/s3.py +2 -2
  5. bifrostsdk/shared/__init__.py +3 -0
  6. bifrostsdk/shared/types/__init__.py +1 -0
  7. {bifrostsdk-1.0.0.dist-info → bifrostsdk-2.0.0.dist-info}/METADATA +19 -19
  8. bifrostsdk-2.0.0.dist-info/RECORD +48 -0
  9. bifrostsdk-2.0.0.dist-info/top_level.txt +1 -0
  10. bifrostsdk-1.0.0.dist-info/RECORD +0 -48
  11. bifrostsdk-1.0.0.dist-info/top_level.txt +0 -1
  12. byfrost/shared/__init__.py +0 -3
  13. byfrost/shared/types/__init__.py +0 -1
  14. {byfrost → bifrostsdk}/__init__.py +0 -0
  15. {byfrost → bifrostsdk}/__init__.pyi +0 -0
  16. {byfrost → bifrostsdk}/bifrost.pyi +0 -0
  17. {byfrost → bifrostsdk}/gcs/__init__.py +0 -0
  18. {byfrost → bifrostsdk}/gcs/__init__.pyi +0 -0
  19. {byfrost → bifrostsdk}/gcs/gcs.pyi +0 -0
  20. {byfrost → bifrostsdk}/pinata/__init__.py +0 -0
  21. {byfrost → bifrostsdk}/pinata/__init__.pyi +0 -0
  22. {byfrost → bifrostsdk}/pinata/pinata.pyi +0 -0
  23. {byfrost → bifrostsdk}/s3/__init__.py +0 -0
  24. {byfrost → bifrostsdk}/s3/__init__.pyi +0 -0
  25. {byfrost → bifrostsdk}/s3/s3.pyi +0 -0
  26. {byfrost → bifrostsdk}/shared/config/__init__.py +0 -0
  27. {byfrost → bifrostsdk}/shared/config/__init__.pyi +0 -0
  28. {byfrost → bifrostsdk}/shared/config/option.py +0 -0
  29. {byfrost → bifrostsdk}/shared/config/provider.py +0 -0
  30. {byfrost → bifrostsdk}/shared/config/request.py +0 -0
  31. {byfrost → bifrostsdk}/shared/config/url.py +0 -0
  32. {byfrost → bifrostsdk}/shared/errors/__init__.py +0 -0
  33. {byfrost → bifrostsdk}/shared/errors/__init__.pyi +0 -0
  34. {byfrost → bifrostsdk}/shared/errors/color.py +0 -0
  35. {byfrost → bifrostsdk}/shared/errors/constant.py +0 -0
  36. {byfrost → bifrostsdk}/shared/errors/interface.py +0 -0
  37. {byfrost → bifrostsdk}/shared/errors/interface.pyi +0 -0
  38. {byfrost → bifrostsdk}/shared/errors/loga.py +0 -0
  39. {byfrost → bifrostsdk}/shared/errors/loga.pyi +0 -0
  40. {byfrost → bifrostsdk}/shared/request/__init__.py +0 -0
  41. {byfrost → bifrostsdk}/shared/request/__init__.pyi +0 -0
  42. {byfrost → bifrostsdk}/shared/request/builder.py +0 -0
  43. {byfrost → bifrostsdk}/shared/types/dataclass/__init__.py +0 -0
  44. {byfrost → bifrostsdk}/shared/types/dataclass/__init__.pyi +0 -0
  45. {byfrost → bifrostsdk}/shared/types/dataclass/bridge.py +0 -0
  46. {byfrost → bifrostsdk}/shared/types/dataclass/file.py +0 -0
  47. {byfrost → bifrostsdk}/shared/types/typeddict/__init__.py +0 -0
  48. {byfrost → bifrostsdk}/shared/types/typeddict/__init__.pyi +0 -0
  49. {byfrost → bifrostsdk}/shared/types/typeddict/bridge.py +0 -0
  50. {byfrost → bifrostsdk}/shared/types/typeddict/file.py +0 -0
  51. {bifrostsdk-1.0.0.dist-info → bifrostsdk-2.0.0.dist-info}/LICENSE +0 -0
  52. {bifrostsdk-1.0.0.dist-info → bifrostsdk-2.0.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
 
3
- # from byfrost.gcs.gcs import GoogleCloudStorage
3
+ # from bifrostsdk.gcs.gcs import GoogleCloudStorage
4
4
  from .gcs.gcs import GoogleCloudStorage
5
5
  from .s3.s3 import SimpleStorageService
6
6
  from .shared.types.dataclass import bridge
@@ -2,8 +2,8 @@
2
2
 
3
3
  """Bifrost interface for Google Cloud Storage"""
4
4
 
5
- from byfrost.shared import errors
6
- from byfrost.shared.config import provider
5
+ from bifrostsdk.shared import errors
6
+ from bifrostsdk.shared.config import provider
7
7
  from google.cloud import storage
8
8
  from ..shared.types.dataclass import file as bfile
9
9
  from ..shared.types.dataclass import bridge
@@ -1,7 +1,7 @@
1
1
  """Bifrost interface for Pinata Cloud."""
2
2
 
3
- from byfrost.shared import errors
4
- from byfrost.shared.config import provider
3
+ from bifrostsdk.shared import errors
4
+ from bifrostsdk.shared.config import provider
5
5
  from ..shared.types.dataclass import file as bfile
6
6
  from ..shared.types.dataclass import bridge
7
7
  from typing import List, Tuple
@@ -1,7 +1,7 @@
1
1
  """Bifrost interface for Amazon Simple Storage Service"""
2
2
 
3
- from byfrost.shared import errors
4
- from byfrost.shared.config import provider
3
+ from bifrostsdk.shared import errors
4
+ from bifrostsdk.shared.config import provider
5
5
  from ..shared.types.dataclass import file as bfile
6
6
  from ..shared.types.dataclass import bridge
7
7
  from typing import List, Tuple
@@ -0,0 +1,3 @@
1
+ # from bifrostsdk.shared.errors.interface import BifrostError
2
+
3
+ # __name__ = "shared"
@@ -0,0 +1 @@
1
+ from bifrostsdk.shared.errors.interface import BifrostError
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bifrostsdk
3
- Version: 1.0.0
3
+ Version: 2.0.0
4
4
  Summary: Rainbow Bridge for shipping your files to any cloud storage service with the same function calls
5
5
  Author-email: ifihan <victoriaolusheye@gmail.com>
6
6
  License: MIT
@@ -28,7 +28,7 @@ Requires-Dist: boto3>=1.34.0
28
28
  Requires-Dist: requests>=2.25.0
29
29
  Requires-Dist: requests-toolbelt>=1.0.0
30
30
 
31
- # Bifrost
31
+ # Bifrost SDK
32
32
 
33
33
  Rainbow Bridge for shipping your files to any cloud storage service with the same function calls.
34
34
 
@@ -36,11 +36,11 @@ Rainbow Bridge for shipping your files to any cloud storage service with the sam
36
36
 
37
37
  # Table of contents
38
38
 
39
- - [Bifrost](#bifrost)
39
+ - [Bifrost SDK](#bifrost-sdk)
40
40
  - [Problem Statement](#problem-statement)
41
41
  - [Google Cloud Storage using GCS SDK](#google-cloud-storage-using-gcs-sdk)
42
42
  - [Pinata Cloud using Pinata API](#pinata-cloud-using-pinata-api)
43
- - [Using Bifrost](#using-bifrost)
43
+ - [Using Bifrost SDK](#using-bifrost-sdk)
44
44
  - [Installation](#installation)
45
45
  - [Usage](#usage)
46
46
  - [Contributing](#contributing)
@@ -50,13 +50,13 @@ Rainbow Bridge for shipping your files to any cloud storage service with the sam
50
50
 
51
51
  # Problem Statement
52
52
 
53
- Many projects need to store files in the cloud and different projects might use different cloud storage providers or, sometimes, multiple cloud providers all at once. Using different SDKs with different implementations for each provider can be tedious and time-consuming. Bifrost aims to simplify the process of working with multiple cloud storage providers by providing a consistent API for all of them.
53
+ Many projects need to store files in the cloud and different projects might use different cloud storage providers or, sometimes, multiple cloud providers all at once. Using different SDKs with different implementations for each provider can be tedious and time-consuming. Bifrost SDK aims to simplify the process of working with multiple cloud storage providers by providing a consistent API for all of them.
54
54
 
55
- To gain a better understanding of how Bifrost addresses this issue, let's take you on a ride with Thor by comparing two different code samples for working with Google Cloud Storage and Pinata Cloud in a single project: one using a conventional approach and the other using Bifrost.
55
+ To gain a better understanding of how Bifrost SDK addresses this issue, let's take you on a ride with Thor by comparing two different code samples for working with Google Cloud Storage and Pinata Cloud in a single project: one using a conventional approach and the other using Bifrost SDK.
56
56
 
57
57
  ## Google Cloud Storage using GCS SDK
58
58
 
59
- Without Bifrost, the process of uploading a file to GCS using the Google Cloud Storage client library for Python would typically involve the following steps:
59
+ Without Bifrost SDK, the process of uploading a file to GCS using the Google Cloud Storage client library for Python would typically involve the following steps:
60
60
 
61
61
  ```py
62
62
  # to be added
@@ -70,31 +70,31 @@ Without Bifrost, the process of uploading a file to GCS using the Google Cloud S
70
70
  # to be added
71
71
  ```
72
72
 
73
- We can already see the challenges of the conventional methods since they require you to learn to use multiple packages with separate implementation patterns. Now this is why `Bifrost` comes in! With Bifrost, you can mount rainbow bridges to the providers you want and use the same set of functions to upload files through any of these mounted bridges. This makes it much easier to work with multiple providers and streamlines the development process to just one learning curve.
73
+ We can already see the challenges of the conventional methods since they require you to learn to use multiple packages with separate implementation patterns. Now this is why `Bifrost SDK` comes in! With Bifrost SDK, you can mount rainbow bridges to the providers you want and use the same set of functions to upload files through any of these mounted bridges. This makes it much easier to work with multiple providers and streamlines the development process to just one learning curve.
74
74
 
75
- Now, let's see how we can revamp the two samples above into something much more exciting with Bifrost.
75
+ Now, let's see how we can revamp the two samples above into something much more exciting with Bifrost SDK.
76
76
 
77
- ## Using Bifrost
77
+ ## Using Bifrost SDK
78
78
 
79
79
  ```py
80
80
  # to be added
81
81
  ```
82
82
 
83
- The above example clearly demonstrates the speed, simplicity, and ease of use that Bifrost offers. Now you know what it feels like to ride with Thor!
83
+ The above example clearly demonstrates the speed, simplicity, and ease of use that Bifrost SDK offers. Now you know what it feels like to ride with Thor!
84
84
 
85
85
  # Installation
86
86
 
87
87
  ```bash
88
- pip install byfrost
88
+ pip install bifrostsdk
89
89
  ```
90
90
 
91
91
  # Usage
92
92
 
93
- If you want to learn more about how Bifrost is creating different methods to make it easier to use different cloud providers, you can follow these links:
93
+ If you want to learn more about how Bifrost SDK is creating different methods to make it easier to use different cloud providers, you can follow these links:
94
94
 
95
- - [Google Cloud Storage (GCS)](gcs\doc.md)
96
- - [Amazon S3](s3\doc.md)
97
- - [Pinata Cloud](pinata\doc.md)
95
+ - [Google Cloud Storage (GCS)](bifrostsdk/gcs/doc.md)
96
+ - [Amazon S3](bifrostsdk/s3/doc.md)
97
+ - [Pinata Cloud](bifrostsdk/pinata/doc.md)
98
98
 
99
99
  # Variants
100
100
 
@@ -105,15 +105,15 @@ Bifrost also exists in other forms and languages and you are free to start a new
105
105
 
106
106
  # Contributing
107
107
 
108
- Bifrost is an open source project and we welcome contributions of all kinds. Please read our [contributing guide](./contributing.md) to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes to Bifrost.
108
+ Bifrost SDK is an open source project and we welcome contributions of all kinds. Please read our [contributing guide](./CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes to Bifrost SDK.
109
109
 
110
110
  # License
111
111
 
112
- Bifrost is [MIT licensed](./LICENSE).
112
+ Bifrost SDK is [MIT licensed](./LICENSE).
113
113
 
114
114
  # Changelog
115
115
 
116
- See [changelog](./changelog.md) for more details.
116
+ See [CHANGELOG.md](./CHANGELOG.md) for more details.
117
117
 
118
118
  # Contributors
119
119
 
@@ -0,0 +1,48 @@
1
+ bifrostsdk/__init__.py,sha256=1pr8h2B0pg5L4WpUR4rLdKySURqd8C9jJOOBNpni2bk,1007
2
+ bifrostsdk/__init__.pyi,sha256=DT5W9Btl9rLCx1I1FJTFlxnKiePg7tEXMzDCOJRjD7s,1734
3
+ bifrostsdk/bifrost.py,sha256=phGoSpqTnJeLPkPSrgvqcD5mqkbKUkBKR_j8hnosejY,5553
4
+ bifrostsdk/bifrost.pyi,sha256=69Bn2JPFpvbJy3vN3NnyN5DdOyoaEqwxOijp_nOrkfk,1145
5
+ bifrostsdk/gcs/__init__.py,sha256=BqwDK2qFtsuETTA7brYvKsrwzn61F7SbRxLCLgcM8gI,61
6
+ bifrostsdk/gcs/__init__.pyi,sha256=30FbMGSTtfO7j8numKz6Y-w9U2Rul_aYt_2MOzhS5t4,62
7
+ bifrostsdk/gcs/gcs.py,sha256=j05EewoZg1VkNwdw4dijMJFIzkLebkF2hOPJ521K_I0,7076
8
+ bifrostsdk/gcs/gcs.pyi,sha256=_YmIxcQp8p8iEygdNSuO0amBwbKLGxb2nN3OG84HWYk,2427
9
+ bifrostsdk/pinata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ bifrostsdk/pinata/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ bifrostsdk/pinata/pinata.py,sha256=hKG0hkw9Rys3zCZFViJ8wQxfhaVavZar_sJTM0F3ySU,8573
12
+ bifrostsdk/pinata/pinata.pyi,sha256=QrUdAfGcC1P-S7CIMWqo7dhgBIvaImbXElEfTLYN5Xw,2053
13
+ bifrostsdk/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ bifrostsdk/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ bifrostsdk/s3/s3.py,sha256=dsaXsTPghP2mAo7P2i2NS4lmnzIf6Aa8pJuzwtsNl20,7512
16
+ bifrostsdk/s3/s3.pyi,sha256=jTLGi0xR49NEi1lDDAZhb45tByW90mnic_zH4oWYjVE,2393
17
+ bifrostsdk/shared/__init__.py,sha256=djzXkEe5dT7n1_p1_3iKzYUyL4j--QaCYwsd2TAt1Cs,85
18
+ bifrostsdk/shared/config/__init__.py,sha256=JpD4txuKahBG3NdpybAuOOKlif_Ew8PYdkwnTCQWtsE,554
19
+ bifrostsdk/shared/config/__init__.pyi,sha256=JpD4txuKahBG3NdpybAuOOKlif_Ew8PYdkwnTCQWtsE,554
20
+ bifrostsdk/shared/config/option.py,sha256=i0M1iBnSLghbb6xvQjj9n3pd-FX7ftpxkSHK2H-d0Nc,583
21
+ bifrostsdk/shared/config/provider.py,sha256=cs3uFslpy3mZxy105AUx3hlets4FQhivZULrHB9TDeA,561
22
+ bifrostsdk/shared/config/request.py,sha256=ZbPRXbBMaeMTkOWFXa2LmceWBdJopATjjdqodGiB3BE,599
23
+ bifrostsdk/shared/config/url.py,sha256=o2ewH5U6mSWNXjApCRDt-DIQJj8eKPFMYtx-ZFpYzPI,1055
24
+ bifrostsdk/shared/errors/__init__.py,sha256=NvptpP9r4UceLt3IREmmRrhuIwN2SM26HCmi1IDpZ6o,397
25
+ bifrostsdk/shared/errors/__init__.pyi,sha256=NvptpP9r4UceLt3IREmmRrhuIwN2SM26HCmi1IDpZ6o,397
26
+ bifrostsdk/shared/errors/color.py,sha256=ayOmZ9fN_LDHQ3sMCpzxWASdCq-e0v9-7KCtCtbImmU,266
27
+ bifrostsdk/shared/errors/constant.py,sha256=pKWdffk3Q4PiBYie3KJ1_7BU0E7uZYPgH-PNMN66AfA,1103
28
+ bifrostsdk/shared/errors/interface.py,sha256=yx9dGWvZw9moWENXFxzlvO85fFMHrVNtaLEMY_hiNa0,499
29
+ bifrostsdk/shared/errors/interface.pyi,sha256=qrxY4uwTGvdYVBSWZtEf6YNalF6Y8MIH2vJq9gvKxr0,533
30
+ bifrostsdk/shared/errors/loga.py,sha256=BJ1UQIJhfrRzgDigW8PNWaKUFO3mS6Kjf-YpSAwPRJY,636
31
+ bifrostsdk/shared/errors/loga.pyi,sha256=cJhOaBUS1qDcjtj3QFu87wR1P_YY3KplAdyllJZlUuk,509
32
+ bifrostsdk/shared/request/__init__.py,sha256=shiW_0dDtAqrYG1DPDUorcpw72bCdw-LuF8CmU1Omp8,40
33
+ bifrostsdk/shared/request/__init__.pyi,sha256=shiW_0dDtAqrYG1DPDUorcpw72bCdw-LuF8CmU1Omp8,40
34
+ bifrostsdk/shared/request/builder.py,sha256=QRB46ZCEsHhw8a3oSN-zON2WBH3TOXiVLlG-sF0cG9Q,1607
35
+ bifrostsdk/shared/types/__init__.py,sha256=tua7Co1xsUaHtBuQp8LVONFE-8ENQikD0fMpD7nG9_4,60
36
+ bifrostsdk/shared/types/dataclass/__init__.py,sha256=yRwLB510YdjHbuSy05d5rvi_ymCWQMDHPi-XBwDUts8,157
37
+ bifrostsdk/shared/types/dataclass/__init__.pyi,sha256=yRwLB510YdjHbuSy05d5rvi_ymCWQMDHPi-XBwDUts8,157
38
+ bifrostsdk/shared/types/dataclass/bridge.py,sha256=7mbaBxk0peA-pmbFVceQXDFkf3N1CwdZXWtKtwKQ5mw,5946
39
+ bifrostsdk/shared/types/dataclass/file.py,sha256=j8sS0ylmjNeAtxUgLqLMM4JKEgoSan1QXpaNrcL9KJo,6940
40
+ bifrostsdk/shared/types/typeddict/__init__.py,sha256=hwqGw9bWkCg0rTvh6Grv8aKsXs0-Eg_p73YjDCgtoK8,207
41
+ bifrostsdk/shared/types/typeddict/__init__.pyi,sha256=hwqGw9bWkCg0rTvh6Grv8aKsXs0-Eg_p73YjDCgtoK8,207
42
+ bifrostsdk/shared/types/typeddict/bridge.py,sha256=_8knfRJ1Ga7dia6JX1pTmFf3Tcdpsoql9_olY_mHDvE,3048
43
+ bifrostsdk/shared/types/typeddict/file.py,sha256=_3Cq8lsXFmLGFyevtU0D-Ivn_J-mOIQAiEUELFyi9sM,6408
44
+ bifrostsdk-2.0.0.dist-info/LICENSE,sha256=gukzCu68-M_u6bkG_omJ_C1OkcMiHRwmSJcmvc_QTNQ,1078
45
+ bifrostsdk-2.0.0.dist-info/METADATA,sha256=Vffn0F9HzJyGwAd6nAFJru90k4OV3kJqmqTgar87Jic,5248
46
+ bifrostsdk-2.0.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
47
+ bifrostsdk-2.0.0.dist-info/top_level.txt,sha256=aog-SNyM9W4yxlwFLYdzdk5t7OFHa3l5dMDHvO3ruAU,11
48
+ bifrostsdk-2.0.0.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ bifrostsdk
@@ -1,48 +0,0 @@
1
- byfrost/__init__.py,sha256=1pr8h2B0pg5L4WpUR4rLdKySURqd8C9jJOOBNpni2bk,1007
2
- byfrost/__init__.pyi,sha256=DT5W9Btl9rLCx1I1FJTFlxnKiePg7tEXMzDCOJRjD7s,1734
3
- byfrost/bifrost.py,sha256=VlL9cKEyTbisP0HsSmeJDYRA0QlnpXp_eYFlWhRj0to,5550
4
- byfrost/bifrost.pyi,sha256=69Bn2JPFpvbJy3vN3NnyN5DdOyoaEqwxOijp_nOrkfk,1145
5
- byfrost/gcs/__init__.py,sha256=BqwDK2qFtsuETTA7brYvKsrwzn61F7SbRxLCLgcM8gI,61
6
- byfrost/gcs/__init__.pyi,sha256=30FbMGSTtfO7j8numKz6Y-w9U2Rul_aYt_2MOzhS5t4,62
7
- byfrost/gcs/gcs.py,sha256=jEcugvz-_R1ZfxJcVDCC_OIQhxK_Vra-6N8NZxQYqh8,7070
8
- byfrost/gcs/gcs.pyi,sha256=_YmIxcQp8p8iEygdNSuO0amBwbKLGxb2nN3OG84HWYk,2427
9
- byfrost/pinata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- byfrost/pinata/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- byfrost/pinata/pinata.py,sha256=qB1qAwV15AuA_BPAETdKJ9glTDFoaN7DddWWxZlAUm8,8567
12
- byfrost/pinata/pinata.pyi,sha256=QrUdAfGcC1P-S7CIMWqo7dhgBIvaImbXElEfTLYN5Xw,2053
13
- byfrost/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- byfrost/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- byfrost/s3/s3.py,sha256=llSDKl5GjVF6zIf8vhjOe-Bld8Avz-rXhNSMM-Arozs,7506
16
- byfrost/s3/s3.pyi,sha256=jTLGi0xR49NEi1lDDAZhb45tByW90mnic_zH4oWYjVE,2393
17
- byfrost/shared/__init__.py,sha256=qQKiq7IZkXJb0cxtDEbr9yE3vYEzeAUNwbCTPHnphRU,82
18
- byfrost/shared/config/__init__.py,sha256=JpD4txuKahBG3NdpybAuOOKlif_Ew8PYdkwnTCQWtsE,554
19
- byfrost/shared/config/__init__.pyi,sha256=JpD4txuKahBG3NdpybAuOOKlif_Ew8PYdkwnTCQWtsE,554
20
- byfrost/shared/config/option.py,sha256=i0M1iBnSLghbb6xvQjj9n3pd-FX7ftpxkSHK2H-d0Nc,583
21
- byfrost/shared/config/provider.py,sha256=cs3uFslpy3mZxy105AUx3hlets4FQhivZULrHB9TDeA,561
22
- byfrost/shared/config/request.py,sha256=ZbPRXbBMaeMTkOWFXa2LmceWBdJopATjjdqodGiB3BE,599
23
- byfrost/shared/config/url.py,sha256=o2ewH5U6mSWNXjApCRDt-DIQJj8eKPFMYtx-ZFpYzPI,1055
24
- byfrost/shared/errors/__init__.py,sha256=NvptpP9r4UceLt3IREmmRrhuIwN2SM26HCmi1IDpZ6o,397
25
- byfrost/shared/errors/__init__.pyi,sha256=NvptpP9r4UceLt3IREmmRrhuIwN2SM26HCmi1IDpZ6o,397
26
- byfrost/shared/errors/color.py,sha256=ayOmZ9fN_LDHQ3sMCpzxWASdCq-e0v9-7KCtCtbImmU,266
27
- byfrost/shared/errors/constant.py,sha256=pKWdffk3Q4PiBYie3KJ1_7BU0E7uZYPgH-PNMN66AfA,1103
28
- byfrost/shared/errors/interface.py,sha256=yx9dGWvZw9moWENXFxzlvO85fFMHrVNtaLEMY_hiNa0,499
29
- byfrost/shared/errors/interface.pyi,sha256=qrxY4uwTGvdYVBSWZtEf6YNalF6Y8MIH2vJq9gvKxr0,533
30
- byfrost/shared/errors/loga.py,sha256=BJ1UQIJhfrRzgDigW8PNWaKUFO3mS6Kjf-YpSAwPRJY,636
31
- byfrost/shared/errors/loga.pyi,sha256=cJhOaBUS1qDcjtj3QFu87wR1P_YY3KplAdyllJZlUuk,509
32
- byfrost/shared/request/__init__.py,sha256=shiW_0dDtAqrYG1DPDUorcpw72bCdw-LuF8CmU1Omp8,40
33
- byfrost/shared/request/__init__.pyi,sha256=shiW_0dDtAqrYG1DPDUorcpw72bCdw-LuF8CmU1Omp8,40
34
- byfrost/shared/request/builder.py,sha256=QRB46ZCEsHhw8a3oSN-zON2WBH3TOXiVLlG-sF0cG9Q,1607
35
- byfrost/shared/types/__init__.py,sha256=9YNyE-o_Qrl7h2Ep-Oe3da3EEvxrZW6KfznRw85o6s8,57
36
- byfrost/shared/types/dataclass/__init__.py,sha256=yRwLB510YdjHbuSy05d5rvi_ymCWQMDHPi-XBwDUts8,157
37
- byfrost/shared/types/dataclass/__init__.pyi,sha256=yRwLB510YdjHbuSy05d5rvi_ymCWQMDHPi-XBwDUts8,157
38
- byfrost/shared/types/dataclass/bridge.py,sha256=7mbaBxk0peA-pmbFVceQXDFkf3N1CwdZXWtKtwKQ5mw,5946
39
- byfrost/shared/types/dataclass/file.py,sha256=j8sS0ylmjNeAtxUgLqLMM4JKEgoSan1QXpaNrcL9KJo,6940
40
- byfrost/shared/types/typeddict/__init__.py,sha256=hwqGw9bWkCg0rTvh6Grv8aKsXs0-Eg_p73YjDCgtoK8,207
41
- byfrost/shared/types/typeddict/__init__.pyi,sha256=hwqGw9bWkCg0rTvh6Grv8aKsXs0-Eg_p73YjDCgtoK8,207
42
- byfrost/shared/types/typeddict/bridge.py,sha256=_8knfRJ1Ga7dia6JX1pTmFf3Tcdpsoql9_olY_mHDvE,3048
43
- byfrost/shared/types/typeddict/file.py,sha256=_3Cq8lsXFmLGFyevtU0D-Ivn_J-mOIQAiEUELFyi9sM,6408
44
- bifrostsdk-1.0.0.dist-info/LICENSE,sha256=gukzCu68-M_u6bkG_omJ_C1OkcMiHRwmSJcmvc_QTNQ,1078
45
- bifrostsdk-1.0.0.dist-info/METADATA,sha256=o4WDm_frxqtTkDG8rPZBNm-wzBet57FuwQDwALCFjAw,5137
46
- bifrostsdk-1.0.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
47
- bifrostsdk-1.0.0.dist-info/top_level.txt,sha256=iTb_8hhhNCRAjPZzTK2M33AUEoJWwGJY-p1NffHcFk4,8
48
- bifrostsdk-1.0.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- byfrost
@@ -1,3 +0,0 @@
1
- # from byfrost.shared.errors.interface import BifrostError
2
-
3
- # __name__ = "shared"
@@ -1 +0,0 @@
1
- from byfrost.shared.errors.interface import BifrostError
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes