Python Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript



Python Examples

Quick Start
Unicode
Byte Array
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML-to-XML
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
Signatures
Socket / SSL
SFTP
SMTP
Spider
SSH Key
SSH
SSH Tunnel
Tar
HTTP Upload
XML
XMP
Zip

More Examples...
String
Email Object
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA

Unreleased...
Bzip2
LZW
Icon

 

 

 

 

 

 

 

GetBaseDomain

The GetBaseDomain method is a utility function that converts a domain into a "domain base", which is useful for grouping URLs. For example: abc.chilkatsoft.com, xyz.chilkatsoft.com, and blog.chilkatsoft.com all have the same base domain: chilkatsoft.com. Things get more complicated when considering country domains (.au, .uk, .se, .cn, etc.) and government, state, and .us domains. Also, domains such as blogspot, tripod, geocities, wordpress, etc, are treated specially so that "xyz.blogspot.com" has a base domain of "xyz.blogspot.com". Note: If you find other domains that should be treated similarly to blogspot.com, send a request to support@chilkatsoft.com.

Download Chilkat Python Library

import chilkat

# The Chilkat Spider component/library is free.
spider = chilkat.CkSpider()

print spider.getBaseDomain("www.chilkatsoft.com")
print spider.getBaseDomain("blog.chilkatsoft.com")
print spider.getBaseDomain("www.news.com.au")
print spider.getBaseDomain("blogs.bbc.co.uk")
print spider.getBaseDomain("xyz.blogspot.com")
print spider.getBaseDomain("www.heaids.org.za")
print spider.getBaseDomain("www.hec.gov.pk")
print spider.getBaseDomain("www.e-mrs.org")
print spider.getBaseDomain("cra.curtin.edu.au")

# Prints:
# chilkatsoft.com
# chilkatsoft.com
# news.com.au
# bbc.co.uk
# xyz.blogspot.com
# heaids.org.za
# hec.gov.pk
# e-mrs.org
# curtin.edu.au

 

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2008 Chilkat Software, Inc. All Rights Reserved.