Posts by Lucas Cardoso • 11 points
2 posts
-
0
votes1
answer414
viewsA: Scrapy Web Data Extraction
Hi, try turning the command: scrapy crawl pensador -o pensador.json It will save the data in a JSON. But the most correct way to do it is to treat the data crawled in pipelines.py There you can save…
-
1
votes0
answers501
viewsQ: Upload images to Django
How to upload more than 1 image in Django Admin ? this is my mode : from django.db import models class Imovel(models.Model): titulo = models.CharField('Titulo', max_length=200, blank=False) slug =…