summaryrefslogtreecommitdiff
path: root/lib/dnspython/examples/name.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dnspython/examples/name.py')
-rwxr-xr-xlib/dnspython/examples/name.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/dnspython/examples/name.py b/lib/dnspython/examples/name.py
new file mode 100755
index 0000000000..b099c49d16
--- /dev/null
+++ b/lib/dnspython/examples/name.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+
+import dns.name
+
+n = dns.name.from_text('www.dnspython.org')
+o = dns.name.from_text('dnspython.org')
+print n.is_subdomain(o) # True
+print n.is_superdomain(o) # False
+print n > o # True
+rel = n.relativize(o) # rel is the relative name www
+n2 = rel + o
+print n2 == n # True
+print n.labels # ['www', 'dnspython', 'org', '']