示例#1
0
def find_safari():
    """Return Safari bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.safari import find_bookmark_file
    return find_bookmark_file()
示例#2
0
def find_chromium():
    """Return Chromium bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.chromium import find_bookmark_file
    return find_bookmark_file()
示例#3
0
def find_opera():
    """Return Opera bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.opera import find_bookmark_file
    return find_bookmark_file()
示例#4
0
def find_firefox():
    """Return Firefox bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.firefox import find_bookmark_file
    return find_bookmark_file()
示例#5
0
def find_chrome():
    """Return Google Chrome bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.chrome import find_bookmark_file
    return find_bookmark_file()
示例#6
0
def find_safari ():
    """Return Safari bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.safari import find_bookmark_file
    return find_bookmark_file()
示例#7
0
def find_opera ():
    """Return Opera bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.opera import find_bookmark_file
    return find_bookmark_file()
示例#8
0
def find_chromium ():
    """Return Chromium bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.chromium import find_bookmark_file
    return find_bookmark_file()
示例#9
0
def find_chrome ():
    """Return Google Chrome bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.chrome import find_bookmark_file
    return find_bookmark_file()
示例#10
0
def find_firefox ():
    """Return Firefox bookmark filename or empty string if not found."""
    from linkcheck.bookmarks.firefox import find_bookmark_file
    return find_bookmark_file()