diff --git a/representatives_votes/management/__init__.py b/representatives_votes/management/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/representatives_votes/management/commands/__init__.py b/representatives_votes/management/commands/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/representatives_votes/management/commands/import_dossier_from_toutatis.py b/representatives_votes/management/commands/import_dossier_from_toutatis.py new file mode 100644 index 0000000000000000000000000000000000000000..76beeab662a5694d24c8bab491a463a9c7eacd93 --- /dev/null +++ b/representatives_votes/management/commands/import_dossier_from_toutatis.py @@ -0,0 +1,11 @@ +import json +import urllib2 + +from django.core.management.base import BaseCommand +from django.conf import settings + + +class Command(BaseCommand): + def handle(self, *args, **options): + dossier_ref = args[0] + print(dossier_ref)