Skip to main content

backlink checker

Project description

Backlink Checker

USAGE:

Example for local excel file

from backlink_checker import Website
web = Website(domain_name="example.com")
web.read_excel_links(excel_path="example.xlsx", column_name="Links")
backlinks = web.start()

Example for google sheets

from backlink_checker import Website
web = Website(domain_name="example.com")
web.read_google_sheets_links(
    spreadsheet_id="1DY57Dq5yMD_Tb6DtI5_FqyIPRN1QMzQ9VtW3XKvnnhE",
    service_account_file="keys.json",
    row_range="Sheet1!A2:A"
)
backlinks = web.start()
# Acess backlinks details
for b in backlinks:
    print(b.target_link)
    print(b.backlink)
    print(b.keywords)
    print(b.link_rel)

Install using pypi:

pip install backlink-checker

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backlink_checker-0.0.6.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

backlink_checker-0.0.6-py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page