pihole6api 0.1.4__py3-none-any.whl → 0.1.6__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.
- pihole6api/group_management.py +6 -0
- pihole6api/list_management.py +12 -3
- {pihole6api-0.1.4.dist-info → pihole6api-0.1.6.dist-info}/METADATA +2 -2
- {pihole6api-0.1.4.dist-info → pihole6api-0.1.6.dist-info}/RECORD +7 -7
- {pihole6api-0.1.4.dist-info → pihole6api-0.1.6.dist-info}/WHEEL +1 -1
- {pihole6api-0.1.4.dist-info → pihole6api-0.1.6.dist-info}/LICENSE +0 -0
- {pihole6api-0.1.4.dist-info → pihole6api-0.1.6.dist-info}/top_level.txt +0 -0
pihole6api/group_management.py
CHANGED
@@ -41,6 +41,12 @@ class PiHole6GroupManagement:
|
|
41
41
|
:param name: Name of the group to fetch.
|
42
42
|
"""
|
43
43
|
return self.connection.get(f"groups/{name}")
|
44
|
+
|
45
|
+
def get_groups(self):
|
46
|
+
"""
|
47
|
+
Retrieve information about all groups.
|
48
|
+
"""
|
49
|
+
return self.connection.get("groups")
|
44
50
|
|
45
51
|
def update_group(self, name, new_name=None, comment=None, enabled=True):
|
46
52
|
"""
|
pihole6api/list_management.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import urllib.parse
|
2
2
|
|
3
|
+
|
3
4
|
class PiHole6ListManagement:
|
4
5
|
def __init__(self, connection):
|
5
6
|
"""
|
@@ -54,12 +55,21 @@ class PiHole6ListManagement:
|
|
54
55
|
params = {"type": list_type}
|
55
56
|
return self.connection.get(f"lists/{encoded_address}", params=params)
|
56
57
|
|
57
|
-
def
|
58
|
+
def get_lists(self, list_type=None):
|
59
|
+
"""
|
60
|
+
Retrieve all lists or lists of a specific type.
|
61
|
+
|
62
|
+
:param list_type: The type of list ("allow" or "block") (optional).
|
63
|
+
"""
|
64
|
+
params = {"type": list_type} if list_type else {}
|
65
|
+
return self.connection.get("lists", params=params)
|
66
|
+
|
67
|
+
def update_list(self, address, list_type, comment=None, groups=None, enabled=True):
|
58
68
|
"""
|
59
69
|
Update an existing list.
|
60
70
|
|
61
71
|
:param address: URL of the blocklist/allowlist.
|
62
|
-
:param list_type: Type of list ("allow" or "block")
|
72
|
+
:param list_type: Type of list ("allow" or "block").
|
63
73
|
:param comment: Updated comment (optional).
|
64
74
|
:param groups: Updated list of group IDs (optional).
|
65
75
|
:param enabled: Whether the list is enabled (default: True).
|
@@ -102,4 +112,3 @@ class PiHole6ListManagement:
|
|
102
112
|
params["n"] = num
|
103
113
|
|
104
114
|
return self.connection.get(f"search/{domain}", params=params)
|
105
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pihole6api
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: Python API Client for Pi-hole 6
|
5
5
|
Author-email: Shane Barbetta <shane@barbetta.me>
|
6
6
|
License: MIT
|
@@ -36,7 +36,7 @@ This package provides a simple, modular SDK for the PiHole 6 REST API.
|
|
36
36
|
|
37
37
|
## Installation
|
38
38
|
|
39
|
-
**Install using `pip
|
39
|
+
**Install using `pip`:**
|
40
40
|
|
41
41
|
```bash
|
42
42
|
pip install pihole6api
|
@@ -8,12 +8,12 @@ pihole6api/dhcp.py,sha256=1A3z-3q9x51-6MOC3JMl7yR_5pHmRxZtMWtPqzWxYm0,629
|
|
8
8
|
pihole6api/dns_control.py,sha256=mxV3AIuGCsx0-1ibpMXor9QUGd_fDFfeaUENPhIK_TY,853
|
9
9
|
pihole6api/domain_management.py,sha256=vxhQSG5F8EFDGqtiNkF0H_KOWFMerXaAuJZT0nMa8ec,3492
|
10
10
|
pihole6api/ftl_info.py,sha256=FINHFotI1sQgkL0OPaNqW-rk4h1ua6QHnRh5gFXXRIE,3210
|
11
|
-
pihole6api/group_management.py,sha256=
|
12
|
-
pihole6api/list_management.py,sha256=
|
11
|
+
pihole6api/group_management.py,sha256=Iip2Na4pUYgC5K9cwOWv_OPD6qdXRzWCmlS-fJlBMjU,2372
|
12
|
+
pihole6api/list_management.py,sha256=NbxEtYNsetF_qH3jL0hZH9xfM5qpb1CM1ADgmodN03Y,4176
|
13
13
|
pihole6api/metrics.py,sha256=czNyx9tUf2yZi_HnUpqykrtW51c042Rxq3zFl2_GjLY,7379
|
14
14
|
pihole6api/network_info.py,sha256=E1qQ7DsCb7qplt0oQIyKhUY12ExNF6bv6thm9rbNqwY,1953
|
15
|
-
pihole6api-0.1.
|
16
|
-
pihole6api-0.1.
|
17
|
-
pihole6api-0.1.
|
18
|
-
pihole6api-0.1.
|
19
|
-
pihole6api-0.1.
|
15
|
+
pihole6api-0.1.6.dist-info/LICENSE,sha256=hpO6J6J9O1VZxZeHQTxKMTmuobaHbApiZxp279I4xNU,1062
|
16
|
+
pihole6api-0.1.6.dist-info/METADATA,sha256=AWSjucKVbtSDbr12oR4L4zL_W0FrmHj8vJLXDIds6b0,3768
|
17
|
+
pihole6api-0.1.6.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
18
|
+
pihole6api-0.1.6.dist-info/top_level.txt,sha256=Qrh46lxEC54rBR8T53em-tuZLWbmi1SDwL1rOhsgrME,11
|
19
|
+
pihole6api-0.1.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|