Metadata-Version: 2.1
Name: goclecdscraper
Version: 1.0.0
Summary: Scraper for Goclecd
Home-page: https://github.com/Harkame/GoclecdScraper
Author: Harkame
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# GoclecdScraper (IN DOING)

## Installation

``` bash

pip install goclecdscraper

```

OR

clone this repository and

``` bash

pip install -r requirements.txt

python setup.py install

```

## Usage

### Initialization with requests

``` python
from goclecdscraper import GoclecdScraper

scraper = GoclecdScraper()

```
### Search products

``` python

results = scraper.search('grounded')

for result in results:
    print(result)

"""

Title : Grounded
price : 30.52 â‚¬
href : https://www.goclecd.fr/acheter-grounded-cle-cd-comparateur-prix/

Title : Grounded Xbox One
price : 22.71 â‚¬
href : https://www.goclecd.fr/acheter-grounded-xbox-one-comparateur-prix/

Title : Grounded Xbox Series X
price : 31.99 â‚¬
href : https://www.goclecd.fr/acheter-grounded-xbox-series-comparateur-prix/

"""
```

