1234567891011 |
- from django.core.management.base import BaseCommand
- from review.model_pred_report import making_dataset
- class Command(BaseCommand):
- help = 'Making dataset with all facebook and google reviews.'
- def handle(self, *args, **options):
- making_dataset()
- self.stdout.write(self.style.SUCCESS(f'Dataset with facebook and google review has been exported.'))
|