Skip to content

Commit 6ce9a3f

Browse files
committed
docs: update readme
1 parent 12285f6 commit 6ce9a3f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This extension designed to simplify working with domains, URIs, and web paths directly within your database queries. Whether you're extracting top-level domains (TLDs), parsing URI components, or analyzing web paths, Netquack provides a suite of intuitive functions to handle all your network tasks efficiently. Built for data engineers, analysts, and developers.
66

7-
With Netquack, you can unlock deeper insights from your web-related datasets without the need for external tools or complex workflows."
7+
With Netquack, you can unlock deeper insights from your web-related datasets without the need for external tools or complex workflows.
88

99
## Installation 🚀
1010

@@ -34,20 +34,20 @@ The download process of the public suffix list is done automatically when the fu
3434

3535
```sql
3636
D SELECT extract_domain('a.example.com') as domain;
37-
┌────────────┐
38-
│ domain │
39-
varchar
40-
├────────────┤
37+
┌────────────
38+
│ domain
39+
varchar
40+
├────────────
4141
example.com
42-
└────────────┘
42+
└────────────
4343

4444
D SELECT extract_domain('https://b.a.example.com/path') as domain;
45-
┌────────────┐
46-
│ domain │
47-
varchar
48-
├────────────┤
45+
┌────────────
46+
│ domain
47+
varchar
48+
├────────────
4949
example.com
50-
└────────────┘
50+
└────────────
5151
```
5252

5353
You can use the `update_suffixes` function to update the public suffix list manually.

0 commit comments

Comments
 (0)