mira-network 0.1.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.
File without changes
mira_network/client.py ADDED
@@ -0,0 +1,8 @@
1
+ class MiraNetwork:
2
+ def __init__(self, api_key: str) -> None:
3
+ self.api_key = api_key
4
+
5
+ def generate(self) -> dict:
6
+ # check if the api key is valid
7
+ if not self.api_key:
8
+ raise ValueError("API key is required")
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.1
2
+ Name: mira-network
3
+ Version: 0.1.0
4
+ Summary: Default template for PDM package
5
+ Author-email: Hamid Raza <contact@hamidraza.com>
6
+ License: MIT
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+
10
+ # mira-network
@@ -0,0 +1,6 @@
1
+ mira_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ mira_network/client.py,sha256=-GSldxzoJrEhLDvF6gd80U6SiEYuUtSnIhJQ6EpeD8w,250
3
+ mira_network-0.1.0.dist-info/METADATA,sha256=OIrrTjqa2NXGkodyvHrg7YNxFRSs1IOHQzQ2EdZ8mJs,240
4
+ mira_network-0.1.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
5
+ mira_network-0.1.0.dist-info/top_level.txt,sha256=lqyBtm4UdvqoeCYxm2P-ygcfmHhHurxg_Ue7dTChKEo,13
6
+ mira_network-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.6.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ mira_network