Metadata-Version: 2.1
Name: amazon-affiliate-scraper
Version: 0.1.1
Summary: A simple library to help a developer who is affiliated with Amazon to automate the process.
Author: Marcuth
Author-email: marcuth2006@gmail.com
License: MIT License
Keywords: amazon affiliate scraper
Description-Content-Type: text/markdown

# Amazon Affiliate - Scraper Tool

## Quickstart

### Creating Affiliate URL:

```py
from amazon_affiliate import Client

EXECUTABLE_PATH = "C:/Users/Usuario/.wdm/drivers/chromedriver/win32/114.0.5735.90/chromedriver.exe"

def main():
    client = Client(
        cookies_file_path = "amazon_cookies.json",
        origin_url = "https://www.amazon.com.br/",
        webdriver_file_path = EXECUTABLE_PATH,
        headless = True
    )

    affiliate_url = client.create_affiliate_url("https://www.amazon.com.br/Introdu%C3%A7%C3%A3o-Programa%C3%A7%C3%A3o-com-Python-Algoritmos/dp/8575227181/?_encoding=UTF8&pd_rd_w=cLgOh&content-id=amzn1.sym.142cf30d-cd8e-4f67-a147-740799e27bf0&pf_rd_p=142cf30d-cd8e-4f67-a147-740799e27bf0&pf_rd_r=Q5SHBAZH69HSPBRR2MGS&pd_rd_wg=98FtW&pd_rd_r=ffa375c6-01c9-4e9c-9f87-2aef974a89af&ref_=pd_gw_ci_mcx_mr_hp_atf_m")

    print(affiliate_url)

if __name__ == "__main__":
    main()
```
