[go: up one dir, main page]

File: PKG-INFO

package info (click to toggle)
django-countries 3.4.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,272 kB
  • ctags: 390
  • sloc: python: 1,894; sh: 44; makefile: 26
file content (454 lines) | stat: -rw-r--r-- 16,465 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
Metadata-Version: 1.1
Name: django-countries
Version: 3.4.1
Summary: Provides a country field for Django models.
Home-page: https://github.com/SmileyChris/django-countries/
Author: Chris Beaven
Author-email: smileychris@gmail.com
License: UNKNOWN
Description: ================
        Django Countries
        ================
        
        A Django application that provides country choices for use with forms, flag
        icons static files, and a country field for models.
        
        Installation
        ============
        
        1. ``pip install django-countries``
        2. Add ``django_countries`` to ``INSTALLED_APPS``
        
        
        CountryField
        ============
        
        A country field for Django models that provides all ISO 3166-1 countries as
        choices.
        
        ``CountryField`` is based on Django's ``CharField``, providing choices
        corresponding to the official ISO 3166-1 list of countries (with a default
        ``max_length`` of 2).
        
        Consider the following model using a ``CountryField``::
        
            from django.db import models
            from django_countries.fields import CountryField
        
            class Person(models.Model):
                name = models.CharField(max_length=100)
                country = CountryField()
        
        Any ``Person`` instance will have a ``country`` attribute that you can use to
        get details of the person's country::
        
            >>> person = Person(name='Chris', country='NZ')
            >>> person.country
            Country(code='NZ')
            >>> person.country.name
            'New Zealand'
            >>> person.country.flag
            '/static/flags/nz.gif'
        
        This object (``person.country`` in the example) is a ``Country`` instance,
        which is described below.
        
        Use ``blank_label`` to set the label for the initial blank choice shown in
        forms::
        
            country = CountryField(blank_label='(select country)')
        
        The ``Country`` object
        ----------------------
        
        An object used to represent a country, instanciated with a two character
        country code.
        
        It can be compared to other objects as if it was a string containing the
        country code and when evaluated as text, returns the country code.  
        
        name
          Contains the full country name.
        
        flag
          Contains a URL to the flag.
        
        alpha3
          The three letter country code for this country.
        
        numeric
          The numeric country code for this country (as an integer).
        
        numeric_padded
          The numeric country code as a three character 0-padded string.
        
        ``CountrySelectWidget``
        -----------------------
        
        A widget is included that can show the flag image after the select box
        (updated with JavaScript when the selection changes).
        
        When you create your form, you can use this custom widget like normal::
        
            from django_countries.widgets import CountrySelectWidget
        
            class PersonForm(forms.ModelForm):
                class Meta:
                    model = models.Person
                    fields = ('name', 'country')
                    widgets = {'country': CountrySelectWidget()}
        
        Pass a ``layout`` text argument to the widget to change the positioning of the
        flag and widget. The default layout is::
        
            '{widget}<img class="country-select-flag" id="{flag_id}" style="margin: 6px 4px 0" src="{country.flag}">'
        
        
        Custom forms
        ============
        
        If you want to use the countries in a custom form, use the following custom
        field to ensure the translatable strings for the country choices are left lazy
        until the widget renders::
        
            from django_countries.fields import LazyTypedChoiceField
        
            class CustomForm(forms.Form):
                country = LazyTypedChoiceField(choices=countries)
        
        You can also use the CountrySelectWidget_ as the widget for this field if you
        want the flag image after the select box.
        
        
        Get the countries from Python
        =============================
        
        Use the ``django_countries.countries`` object instance as an iterator of ISO
        3166-1 country codes and names (sorted by name).
        
        For example::
        
            >>> from django_countries import countries
            >>> dict(countries)['NZ']
            'New Zealand'
        
            >>> for code, name in list(countries)[:3]:
            ...     print("{name} ({code})".format(name=name, code=code))
            ...
            Afghanistan (AF)
            Ă…land Islands (AX)
            Albania (AL)
        
        Country names are translated using Django's standard ``ugettext``.
        If you would like to help by adding a translation, please visit
        https://www.transifex.com/projects/p/django-countries/
        
        
        Template Tags
        =============
        If you have your country code stored in a different place than a `CountryField` you can use the template tag to get a `Country` object and have access to all of its properties:
        
        
            {% load countries %}
            {% get_country 'BR' as country %}
            {{ country.name }}
        
        
        Customization
        =============
        
        Customize the country list
        --------------------------
        
        Country names are taken from the official ISO 3166-1 list. If your project
        requires the use of alternative names, the inclusion or exclusion of specific
        countries then use the ``COUNTRIES_OVERRIDE`` setting.
        
        A dictionary of names to override the defaults.
        
        Note that you will need to handle translation of customised country names.
        
        Setting a country's name to ``None`` will exclude it from the country list.
        For example::
        
            COUNTRIES_OVERRIDE = {
                'NZ': _('Middle Earth'),
                'AU': None
            }
        
        If you have a specific list of countries that should be used, use
        ``COUNTRIES_ONLY``::
        
            COUNTRIES_ONLY = ['NZ', 'AU']
        
        or to specify your own country names, use a dictionary or two-tuple list
        (string items will use the standard country name)::
        
            COUNTRIES_ONLY = [
                'US',
                'UK'
                ('NZ', _('Middle Earth')),
                ('AU', _('Desert')),
            ]
        
        
        Show certain countries first
        ----------------------------
        
        Provide a list of country codes as the ``COUNTRIES_FIRST`` setting and they
        will be shown first in the countries list (in the order specified) before all
        the alphanumerically sorted countries.
        
        By default, these 'first' countries are not repeated again in the
        alphanumerically sorted list. If you would like them to be repeated, set the
        ``COUNTRIES_FIRST_REPEAT`` setting to ``True``.
        
        Finally, you can optionally separate these 'first' countries with an empty
        choice by providing the choice label as the ``COUNTRIES_FIRST_BREAK`` setting.
        
        
        Customize the flag URL
        ----------------------
        
        The ``COUNTRIES_FLAG_URL`` setting can be used to set the url for the flag
        image assets. It defaults to::
        
          COUNTRIES_FLAG_URL = 'flags/{code}.gif'
        
        The URL can be relative to the STATIC_URL setting, or an absolute URL.
        
        The location is parsed using Python's string formatting and is passed the
        following arguments:
        
            * code
            * code_upper
        
        For example: ``COUNTRIES_FLAG_URL = 'flags/16x10/{code_upper}.png'``
        
        No checking is done to ensure that a static flag actually exists.
        
        Alternatively, you can specify a different URL on a specific ``CountryField``::
        
            class Person(models.Model):
                name = models.CharField(max_length=100)
                country = CountryField(
                    countries_flag_url='//flags.example.com/{code}.png')
        
        
        Single field customization
        --------------------------
        
        To customize an individual field, rather than rely on project level settings,
        create a ``Countries`` subclass which overrides settings.
        
        To override a setting, give the class an attribute matching the lowercased
        setting without the ``COUNTRIES_`` prefix. 
        
        Then just reference this class in a field. For example, this ``CountryField``
        uses a custom country list that only includes the G8 countries::
        
            from django_countries import Countries
        
            class G8Countries(Countries):
                
                    'CA', 'FR', 'DE', 'IT', 'JP', 'RU', 'GB',
                    ('EU', _('European Union'))
                ]
        
            class Vote(models.Model):
                country = CountryField(countries=G8Countries)
                approve = models.BooleanField()
        
        
        Django Rest Framework field
        ===========================
        
        Django Countries ships with a ``CountryField`` serializer field to simplify
        the REST interface. For example::
        
            class PersonSerializer(serializers.ModelSerializer):
                country = CountryField()
        
                class Meta:
                    model = models.Person
                    fields = ('name', 'email', 'country')
        
        
        You can optionally instanciate the field with ``countries`` with a custom
        Countries_ instance.
        
        .. _Countries: Single field customization_
        
        REST output format
        ------------------
        
        By default, the field will output just the country code. If you would rather
        have more verbose output, instanciate the field with ``country_dict=True``,
        which will result in the field having the following output structure::
        
            {"code": "NZ", "name": "New Zealand"}
        
        Either the code or this dict output structure are acceptible as input
        irregardless of the ``country_dict`` argument's value.
        
        
        ==========
        Change Log
        ==========
        
        This log shows interesting changes that happen for each version, latest
        versions first. It can be assumed that translations have been updated each
        release (and any new translations added).
        
        
        Version 3.4 (22 October 2015)
        =============================
        
        * Extend test suite to cover Django 1.8
        
        * Fix XSS escaping issue in CountrySelectWidget
        
        * Common name changes: fix typo of Moldova, add United Kingdom
        
        * Add ``{% get_country %}`` template tag.
        
        * New ``CountryField`` Django Rest Framework serializer field.
        
        Version 3.4.1
        -------------
        
        * Fix minor packaging error.
        
        
        Version 3.3 (30 Mar 2015)
        =========================
        
        * Add the attributes to ``Countries`` class that can override the default
          settings.
        
        * CountriesField can now be passed a custom countries subclass to use, which
          combined with the previous change allows for different country choices for
          different fields.
        
        * Allow ``COUNTRIES_ONLY`` to also accept just country codes in its list
          (rather than only two-tuples), looking up the translatable country name from
          the full country list.
        
        * Fix Montenegro flag size (was 12px high rather than the standard 11px).
        
        * Fix outdated ISO country name formatting for Bolivia, Gambia, Holy See,
          Iran, Micronesia, and Venezuela.
        
        
        Version 3.2 (24 Feb 2015)
        =========================
        
        * Fixes initial iteration failing for a fresh ``Countries`` object.
        
        * Fix widget's flag URLs (and use ensure widget is HTML encoded safely).
        
        * Add ``countries.by_name(country, language='en')`` method, allowing lookup of
          a country code by its full country name. Thanks Josh Schneier.
        
        
        Version 3.1 (15 Jan 2015)
        =========================
        
        * Start change log :)
        
        * Add a ``COUNTRIES_FIRST`` setting (and some other related ones) to allow for
          specific countries to be shown before the entire alphanumeric list.
        
        * Add a ``blank_label`` argument to ``CountryField`` to allow customization of
          the label shown in the initial blank choice shown in the select widget.
        
        Version 3.1.1 (15 Jan 2015)
        ---------------------------
        
        * Packaging fix (``CHANGES.rst`` wasn't in the manifest)
        
        
        Version 3.0 (22 Oct 2014)
        =========================
        
        Django supported versions are now 1.4 (LTS) and 1.6+
        
        * Add ``COUNTRIES_ONLY`` setting to restrict to a specific list of countries.
        
        * Optimize country name translations to avoid exessive translation calls that
          were causing a notable performance impact.
        
        * PyUCA integration, allowing for more accurate sorting across all locales.
          Also, a better sorting method when PyUCA isn't installed.
        
        * Better tests (now at 100% test coverage).
        
        * Add a ``COUNTRIES_FLAG_URL`` setting to allow custom flag urls.
        
        * Support both IOC and numeric country codes, allowing more flexible lookup of
          countries and specific code types.
        
        * Field descriptor now returns ``None`` if no country matches (*reverted in v3.0.1*)
        
        Version 3.0.1 (27 Oct 2014)
        ---------------------------
        
        * Revert descriptor to always return a Country object.
        
        * Fix the ``CountryField`` widget choices appearing empty due to a translation
          change in v3.0.
        
        Version 3.0.2 (29 Dec 2014)
        ---------------------------
        
        * Fix ``CountrySelectWidget`` failing when used with a model form that is
          passed a model instance.
        
        
        Version 2.1 (24 Mar 2014)
        =========================
        
        * Add IOC (3 letter) country codes.
        
        * Fix bug when loading fixtures.
        
        Version 2.1.1 (28 Mar 2014)
        ---------------------------
        
        * Fix issue with translations getting evaluated early.
        
        Version 2.1.2 (28 Mar 2014)
        ---------------------------
        
        * Fix Python 3 compatibility.
        
        
        
        Version 2.0 (18 Feb 2014)
        =========================
        
        This is the first entry to the change log. The previous version was 1.5,
        released 19 Nov 2012.
        
        * Optimized flag images, adding flags missing from original source.
        
        * Better storage of settings and country list.
        
        * New country list format for fields.
        
        * Better tests.
        
        * Changed ``COUNTRIES_FLAG_STATIC`` setting to ``COUNTRIES_FLAG_URL``.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Framework :: Django