Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data is not correct #92

Open
furkannkilicc opened this issue Jul 20, 2023 · 0 comments
Open

Data is not correct #92

furkannkilicc opened this issue Jul 20, 2023 · 0 comments

Comments

@furkannkilicc
Copy link

Hi again, in my code data is not correct . mean for ex. iphone 11 price must be 10000 but its returned 150 which is airpod price. How can i handle it ?

my code is : and also ı have wrote it on excell.

`scraper = AutoScraper()
scraper.build(URL, wanted_dict=wanteds)
result = scraper.get_result_similar(URL, group_by_alias=True)

Verilerdeki yinelenenleri kaldır

unique_data = set(zip(result['Ürün Adı'], result['MPQ Fiyat'],result['Manufacturer']))

wb = Workbook()
ws = wb.active

headers = ['Ürün Adı', 'MPQ Fiyat','Manufacturer']
ws.append(headers)

for data in unique_data:
ws.append(data)

dosya_yolu = './colzip22.xlsx'
wb.save(dosya_yolu) `

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant