Metadata-Version: 2.1
Name: backlink_checker
Version: 0.0.6
Summary: backlink checker
Home-page: 
Author: mr11robot
Author-email: taha.youssef.fares@gmail.com
License: MIT
Keywords: backlinks
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openpyxl
Requires-Dist: pandas
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: google-oauth2-tool
Requires-Dist: google-api-python-client

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
```
