Skip to content
Extraits de code Groupes Projets
  • Jamesie Pic's avatar
    d913e263
    Added parltrack_import_representatives command · d913e263
    Jamesie Pic a rédigé
    It includes latest research by Arnaud Fabre but I ended up squashing all
    commits and adding my own fixups in this commit.
    
    Also:
    
    - the import command is tested,
    - code was PEP8'ed
    - untested code was removed,
    - duplicate country Israel was removed and migration was added,
    - requirements were deleted in favor of proper setup.py.
    d913e263
    Historique
    Added parltrack_import_representatives command
    Jamesie Pic a rédigé
    It includes latest research by Arnaud Fabre but I ended up squashing all
    commits and adding my own fixups in this commit.
    
    Also:
    
    - the import command is tested,
    - code was PEP8'ed
    - untested code was removed,
    - duplicate country Israel was removed and migration was added,
    - requirements were deleted in favor of proper setup.py.
0001_initial.py 721 o
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Country',
            fields=[
                ('id',
                 models.AutoField(
                     verbose_name='ID',
                     serialize=False,
                     auto_created=True,
                     primary_key=True)),
                ('name',
                 models.CharField(
                     max_length=255)),
                ('code',
                 models.CharField(
                     max_length=2)),
            ],
        ),
    ]