https://github.com/mateogiuffra/web-scrapping-kotk
Web Scrapping con BeatifulSoup a la pagina de King Of The Kongo
https://github.com/mateogiuffra/web-scrapping-kotk
beautifulsoup4 json python regex webscraping
Last synced: 2 months ago
JSON representation
Web Scrapping con BeatifulSoup a la pagina de King Of The Kongo
- Host: GitHub
- URL: https://github.com/mateogiuffra/web-scrapping-kotk
- Owner: MateoGiuffra
- Created: 2025-04-05T22:52:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-05T23:25:27.000Z (over 1 year ago)
- Last Synced: 2025-04-06T00:18:18.913Z (over 1 year ago)
- Topics: beautifulsoup4, json, python, regex, webscraping
- Language: Python
- Homepage:
- Size: 1.92 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KongoScrapper
**KongoScrapper** is a scraper built in Python that extracts product information from the site kingofthekongo.com.ar, saving the data in structured .json files. This project can be useful for price analysis, stock monitoring, product comparisons, or other automated purposes.
---
## ๐ ยฟWhat does it do?
- Navigate through all site sections.
- Extracts the section title and listed products.
- For each product, it obtains:
- Name
- Price
- Image
- Saves all data in the folder `data/` with JSON format.
---
## โ๏ธ Installation
1. Clone the repository:
```bash
git clone https://github.com/tuusuario/KongoScrapper.git
cd KongoScrapper
```
2. Install dependencies:
```bash
pip install -r requirements.txt
```
> Main Requirements:
> - `requests`
> - `beautifulsoup4`
3. Run main script:
```python
from kongo_scrapper import KongoScrapper
scraper = KongoScrapper()
scraper.start_scrapping(clean_files=True) # Set clean_files=True if you want delete all files from 'data'
```
> All `.json` files will be save in `/data` folder.
---
## ๐ Example:
```json
{
"title": "Remerones - King of the Kongo",
"products": [
{
"name": "Remeron Verified Grey",
"price": "$57.990",
"photo": "https://acdn-us.mitiendanube.com/stores/219/431/products/a...jpg"
},
{
"name": "Remeron Teddy Mnky",
"price": "$44.990",
"photo": "https://acdn-us.mitiendanube.com/stores/219/431/products/e...jpg"
}
]
}
```
## ๐ฌ Contact
[LinkedIn](https://linkedin.com/in/mateo-giuffra-023682289/) โข [Gmail](mailto:matteogiuffrah40@gmail.com)
> For any questions, doubts, or if you'd just like to reach out, feel free to use either of the contacts above.