xautomata-hive 3.22.0__py3-none-any.whl → 3.22.1__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.
- hive/cookbook/qr_code.py +19 -0
- hive/version.py +1 -1
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.1.dist-info}/METADATA +1 -1
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.1.dist-info}/RECORD +7 -6
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.1.dist-info}/LICENSE +0 -0
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.1.dist-info}/WHEEL +0 -0
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.1.dist-info}/top_level.txt +0 -0
hive/cookbook/qr_code.py
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
from hive.api import ApiManager, handling_single_page_methods, warning_wrong_parameters
|
2
|
+
|
3
|
+
|
4
|
+
class QrCode(ApiManager):
|
5
|
+
"""Class that handles all the XAutomata qr_code APIs"""
|
6
|
+
|
7
|
+
def qr_code(self, warm_start: bool = False, kwargs: dict = None) -> list:
|
8
|
+
"""Get Qr Code
|
9
|
+
|
10
|
+
Args:
|
11
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
12
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
13
|
+
|
14
|
+
Returns: list"""
|
15
|
+
if kwargs is None:
|
16
|
+
kwargs = dict()
|
17
|
+
response = self.execute('GET', path=f'/qr_code', warm_start=
|
18
|
+
warm_start, **kwargs)
|
19
|
+
return response
|
hive/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = '3.22.
|
1
|
+
version = '3.22.1'
|
@@ -4,7 +4,7 @@ hive/decorators.py,sha256=qvXBMfkzmJ3nHzpnX96thrTdZjWuw4WAqYaxsJCfRug,12110
|
|
4
4
|
hive/exceptions.py,sha256=kTJSPMViU2ZhF_ENbL_i-skU3YEv_ViJH2PpUQ6ums8,136
|
5
5
|
hive/infrastrucure_keys.py,sha256=UzgXex6tQsglowhKeb45e7vw4u7kh2wM0YscQPorodU,4095
|
6
6
|
hive/tools.py,sha256=Oi_d6wphtAS4f1wOhFzdXZj8Au1nwZ-UrRvIJDBQLMo,1371
|
7
|
-
hive/version.py,sha256=
|
7
|
+
hive/version.py,sha256=FNMFt03GRN9YuUiJMb0Ks19qz07Ih0TrUH2A69Th4Io,18
|
8
8
|
hive/cookbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
hive/cookbook/acl_docs.py,sha256=0xr7Vb9121vhsiZjQaKvuAt4gKlXOO4aUJM472HeARw,786
|
10
10
|
hive/cookbook/acl_overrides.py,sha256=l3xyJmGeQysP1M2Sa6kVhDn8n6ttCKUzJ0jTcPjyo78,9690
|
@@ -46,6 +46,7 @@ hive/cookbook/probe_types.py,sha256=isKPKbMr19_DVtI_0Erk4i3g6Hh_yWxOo6RbTCOkCxw,
|
|
46
46
|
hive/cookbook/probes.py,sha256=jYqeGwz-26Y4B3t2EIOl5MfW8gcpHwXF-pdEPfaO-Qk,23648
|
47
47
|
hive/cookbook/probes_log_ingest.py,sha256=0D5szbqHOujPbGQ_nyZZZpob4damvWjo1FSw9iDf0fM,1661
|
48
48
|
hive/cookbook/profile_topics.py,sha256=Wp209fmSsrEZ3jnn6AYHjX7jJ12zfFDV-T9liGUHuXI,10253
|
49
|
+
hive/cookbook/qr_code.py,sha256=Ra4hk5hHEiyhVwFIFmtDphn_cvS7TUGECnDqLEl48zA,779
|
49
50
|
hive/cookbook/questions.py,sha256=VMf1WWHYFfegujy5bpI7kxVlokOpHraKW7JRppoPvYQ,8070
|
50
51
|
hive/cookbook/reason_for_closure.py,sha256=PqDleTYc6RJmhPrJ7q-A9RgCc6GEC05x_hU9R2sXIFE,11012
|
51
52
|
hive/cookbook/retention_rules.py,sha256=brW64MqYrl4XNYN7ZxojVDWXpdBV4fRpR7a2A1ya2zM,7958
|
@@ -70,8 +71,8 @@ hive/cookbook/virtual_domains.py,sha256=N3dp3pjkO-5jni3KBcCukRqcmVqAFYCDV6dgVXrH
|
|
70
71
|
hive/cookbook/webhooks.py,sha256=6ZSJfAiEjuh4Y4pfkUNjUYquBwxhD2KVkcVU3BcNkDc,7572
|
71
72
|
hive/cookbook/widget_groups.py,sha256=GY7mBh72HzI9RRMCwnmJ-fildtZ3w4BrPDUdNfNoVyk,16018
|
72
73
|
hive/cookbook/widgets.py,sha256=nYAEwh17aMGam8EC13jUwSR_i9KuP4yYRt25F0J6Z4g,23497
|
73
|
-
xautomata_hive-3.22.
|
74
|
-
xautomata_hive-3.22.
|
75
|
-
xautomata_hive-3.22.
|
76
|
-
xautomata_hive-3.22.
|
77
|
-
xautomata_hive-3.22.
|
74
|
+
xautomata_hive-3.22.1.dist-info/LICENSE,sha256=CFT1oIPm4kciOjwep2r1LQnpATugddSy3D839fsmgFs,1065
|
75
|
+
xautomata_hive-3.22.1.dist-info/METADATA,sha256=oYdztp6MA6PEWFi9tR7BFdA1D9O8_DhliGRBOgtehBk,10902
|
76
|
+
xautomata_hive-3.22.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
77
|
+
xautomata_hive-3.22.1.dist-info/top_level.txt,sha256=pLpVAuviHGk3pzaFXU-4GKttxGTGAbFoWK8JvUl1jHQ,5
|
78
|
+
xautomata_hive-3.22.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|