rakib72642's picture
create django structure
fe9d3dc
raw
history blame contribute delete
371 Bytes
from django.db import models
class ImageUrl(models.Model):
url = models.URLField(verbose_name="Image URL")
processed = models.DateTimeField(auto_now_add=True, verbose_name="Processed Time")
# You can add more fields to store results or statuses, e.g., processing status
def __str__(self):
return f"URL: {self.url} processed on {self.processed}"