15 lines
296 B
Python
15 lines
296 B
Python
|
import re
|
||
|
import WebSiteParser
|
||
|
|
||
|
|
||
|
|
||
|
class SmsreceivefreeCom(WebSiteParser.WebSiteParser):
|
||
|
def __init__(self):
|
||
|
super().__init__("smsreceivefree.com")
|
||
|
|
||
|
|
||
|
def Parse(self):
|
||
|
"""Perform parsing of entire web site.
|
||
|
"""
|
||
|
|
||
|
raise NotImplementedError("support for this service is not yet implemented")
|