9 lines
196 B
Python
9 lines
196 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
from membershipworks import tasks
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def handle(self, *args, **options):
|
|
tasks.scrape_membershipworks()
|