forked from arthurdejong/python-stdnum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1691 lines (1087 loc) · 56.9 KB
/
ChangeLog
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-10-19 Arthur de Jong <[email protected]>
* [72c0ff1] stdnum/iso6346.py: Remove unused import
2014-10-19 Arthur de Jong <[email protected]>
* [e713cc7] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
stdnum/isil.dat: Update database files
2014-10-13 Denis Krienbühl <[email protected]>
* [256aa49] stdnum/ch/__init__.py, stdnum/ch/ssn.py: Adds the
Swiss social security number
Also known as "Sozialversicherungsnummer" / "Neue AHV Nummer".
2014-10-18 Arthur de Jong <[email protected]>
* [2cc50e2] stdnum/eu/at_02.py, stdnum/iban.py, stdnum/imei.py,
stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
stdnum/iso7064/mod_97_10.py, stdnum/luhn.py, stdnum/util.py,
stdnum/verhoeff.py: Only catch Exception
2014-10-17 Arthur de Jong <[email protected]>
* [e2948bb] : Add Ecuadorian CI and RUC numbers
Add modules for Ecuadorian Identification Card (CI - Cédula
de identidad) and Fiscal Numbers (RUC - Registro Único de
Contribuyentes)
See: https://github.com/arthurdejong/python-stdnum/pull/12
2014-10-17 Arthur de Jong <[email protected]>
* [e5250be] stdnum/ec/ci.py, stdnum/ec/ruc.py,
tests/test_ec_ci.doctest, tests/test_ec_ruc.doctest: Validate
parts of numbers
This raises exceptions when the provice or establishment number
part of the number contains invalid values.
2014-10-17 Arthur de Jong <[email protected]>
* [10a044f] stdnum/ec/ci.py, stdnum/ec/ruc.py: Refactor checksum
functions
Use the CI checks from within the RUC module for natural RUC
numbers (thereby eliminating a bug in the RUC checksum calculation)
and simplify the checksum functions.
2014-10-17 Arthur de Jong <[email protected]>
* [f61b855] stdnum/ec/ci.py, stdnum/ec/ruc.py,
tests/test_ec_ci.doctest, tests/test_ec_ruc.doctest: Use
dedicated doctests
This moves a number of the existing test cases to dedicated doctest
files and extend the tests with more numbers and corner cases.
This also fixes a few docstrings.
2014-10-12 Jonathan Finlay <[email protected]>
* [e8f1ca6] stdnum/ec/__init__.py, stdnum/ec/ci.py, stdnum/ec/ruc.py:
Add Ecuadorian CI and RUC numbers
Add modules for Ecuadorian Identification Card (CI - Cédula
de identidad) and Fiscal Numbers (RUC - Registro Único de
Contribuyentes)
2014-10-06 Arthur de Jong <[email protected]>
* [2700b7a] : Add Chinese Resident Identity Card Number
2014-10-06 Jiangge Zhang <[email protected]>
* [141d576] stdnum/cn/ric.py, tests/test_cn_ric.doctest: Support
the Resident Identity Card Number of People's Republic China
2014-10-05 Jiangge Zhang <[email protected]>
* [10ae548] getcnloc.py, stdnum/cn/loc.dat: Download locations
from the China (PRC) government site
2014-10-05 Jiangge Zhang <[email protected]>
* [e9eb546] stdnum/cn/__init__.py: Add stdnum.cn package for Chinese
(PRC) numbers
2014-10-05 Arthur de Jong <[email protected]>
* [97ac94d] stdnum/my/nric.py, tests/test_my_nric.doctest: Update
NRIC tests
2014-10-05 Arthur de Jong <[email protected]>
* [123e9cb] getmybp.py, stdnum/my/bp.dat: Update URLs for Malaysian
code lists
This updates the URLs for the state and country codes as published
by the National Registration Department of Malaysia and changes
the parsing to the new page layout.
This also updates the data file.
https://github.com/arthurdejong/python-stdnum/issues/14
2014-09-01 Tony Bajan <[email protected]>
* [86f60a2] stdnum/us/rtn.py: Add US bank routing transit numbers
2014-07-05 Arthur de Jong <[email protected]>
* [fbb0316] getisbn.py: Use ElementTree for simpler XML parsing
2014-07-05 Arthur de Jong <[email protected]>
* [03e4f97] getisbn.py, stdnum/isbn.dat: Fix getisbn script and
update ISBN data file
2014-04-11 Arthur de Jong <[email protected]>
* [26517fe] getnumlist.py, stdnum/__init__.py: Improve package
docstring formatting and show example
2014-03-18 Sharoon Thomas <[email protected]>
* [85dd6f2] stdnum/iso6346.py, tests/test_iso6346.doctest: Add
support for ISO6346
Add validation and creation of check digit for ISO6346 codes.
See: https://github.com/arthurdejong/python-stdnum/pull/9
2014-03-05 Jussi Räsänen <[email protected]>
* [2405c89] stdnum/eu/vat.py: Added a simple backwards compability
check
2014-02-17 Arthur de Jong <[email protected]>
* [a4012f5] stdnum/ie/pps.py, stdnum/ie/vat.py,
tests/test_eu_vat.doctest: Add support for 2013 extension of
Irish PPS Numbers
References: - https://www.welfare.ie/en/Pages/PPSN.aspx -
http://www.citizensinformation.ie/en/social_welfare/irish_social_welfare_system/personal_public_service_number.html
2014-02-06 Arthur de Jong <[email protected]>
* [71d9837] stdnum/at_02.py, stdnum/eu/at_02.py: Rename AT-02
module to stdnum.eu.at_02
2014-02-05 Sergi Almacellas Abellana <[email protected]>
* [099078e] stdnum/at_02.py: Add SEPA Creditor identifier (AT-02)
2014-02-02 Arthur de Jong <[email protected]>
* [1ac00a0] stdnum/it/codicefiscale.py,
tests/test_it_codicefiscale.doctest: Add an Italian Codice
Fiscale module
This module validates 16 digit Italian tax codes for individuals.
https://en.wikipedia.org/wiki/Italian_fiscal_code_card
It is based on the pycodicefiscale module that can be found here:
https://github.com/baxeico/pycodicefiscale
Functions have been renamed to follow the stdnum naming scheme:
isvalid() -> is_valid(), control_code -> calc_check_digit(),
get_birthday() -> get_birth_date(), get_sex() -> get_gender(). The
build() function for generating tax codes (based on name,
birth place and date) has been left out because this number
cannot be uniquely constructed with this information alone
(numbers are issued by the Italian tax office with a mechanism
handle duplicates).
Addresses trac ticket #9.
2014-01-01 Arthur de Jong <[email protected]>
* [c3d669c] setup.py: Remove requirement on distribute
This accidentally slipped into 907e410. 2013-12-31 Arthur de
Jong <[email protected]>
* [d933aab] .gitignore, ChangeLog, NEWS, README, docs/index.rst,
docs/stdnum.my.nric.rst, docs/stdnum.nl.brin.rst,
docs/stdnum.nl.postcode.rst, docs/stdnum.us.atin.rst,
docs/stdnum.us.ein.rst, docs/stdnum.us.itin.rst,
docs/stdnum.us.ptin.rst, docs/stdnum.us.tin.rst, getiban.py,
getimsi.py, stdnum/__init__.py: Get files ready for 0.9 release
2013-12-31 Arthur de Jong <[email protected]>
* [5c1765e] stdnum/iban.dat, stdnum/isbn.dat: Update database files
2013-12-31 Arthur de Jong <[email protected]>
* [4217c35] stdnum/isan.py, stdnum/meid.py, stdnum/util.py: Add
pragma: no cover for Python 3
Some statements are not covered in Python 3 tests.
2013-12-31 Arthur de Jong <[email protected]>
* [6c49ca8] getiban.py: Update getiban script
This switches to use the csv module to support multi-line column
values. This also handles some problems in the BBAN structure
column that would contain an IBAN structure.
2013-12-31 Arthur de Jong <[email protected]>
* [0ee74e5] ChangeLog: Generate Changelog with different formatter
git log --date=short --name-only \ --format="%x0c%ad %aN
<%aE>%n%n%x09* [%h]%x00%s%n%x00%+b%x00" | \
awk 'BEGIN { RS="\f"; FS="\0" } { if ($1) { gsub(/\n*$/,
"", $4); gsub(/^\n*/, "", $4); gsub(/\n/, ", ", $4);
gsub(/\ngit-svn-id.*/, "", $3); gsub(/\n/, "\n\t ", $3); print
$1 " " $4 ": "; print "\t " $2 $3 }}' | \ fmt --width=78 -c
> ChangeLog
2013-12-30 Cédric Krier <[email protected]>
* [a148835] stdnum/gb/vat.py, tests/test_gb_vat.doctest: Add some
new VAT numbers for GB
Add support for restarting from November 2009 using 9755.
Add support for EU format of health authorities
See: https://github.com/arthurdejong/python-stdnum/pull/4
2013-12-12 eneq123 <[email protected]>
* [4609a22] getimsi.py, stdnum/imsi.dat: Update parsing in getimsi
script
This updates the regexes and includes seom optimizations.
See: https://github.com/arthurdejong/python-stdnum/issues/1
2013-12-30 Cédric Krier <[email protected]>
* [9ec3cb0] stdnum/eu/vat.py: Add support for proxy
2013-12-04 Arthur de Jong <[email protected]>
* [7f30979] getimsi.py, stdnum/imsi.dat: Update getimsi script
This updates the script due to the Wikipedia article change and
removes the code for getting the data from ITU for now.
See: https://github.com/arthurdejong/python-stdnum/issues/1
2013-11-09 Arthur de Jong <[email protected]>
* [b0c47d5] stdnum/nl/__init__.py, stdnum/nl/postcode.py: Add a
Dutch postal code module
The Dutch postal code (postcode) consists of four digits followed
by two characters and together with the house number should
uniquely identify any address.
Addresses trac ticket #7.
2013-11-09 Arthur de Jong <[email protected]>
* [73d05b0] stdnum/nl/brin.py: Add a Dutch Brin number module
The Brin (Basis Registratie Instellingen) is a number to identify
schools and related institutions.
Addresses trac ticket #6.
2013-11-09 Arthur de Jong <[email protected]>
* [73330a1] stdnum/nl/onderwijsnummer.py: Clarify onderwijsnummer
description
2013-11-09 Arthur de Jong <[email protected]>
* [188d3ea] : Add various United States Tax number modules
This adds modules for the Individual Taxpayer Identification Number
(ITIN), the Employer Identification Number (EIN), Adoption Taxpayer
Identification Number (ATIN) and Preparer Tax Identification
Number (PTIN) that together with the Social Security Number
(SSN) are valid Taxpayer Identification Numbers (TIN)
2013-10-12 Arthur de Jong <[email protected]>
* [9530635] stdnum/us/tin.py: Add a United States TIN module
The Taxpayer Identification Number is used used for tax purposes
in the United States. This module uses the SSN, ITIN, EIN,
PTIN and ATIN modules to determine validitiy of the TIN.
2013-10-11 Arthur de Jong <[email protected]>
* [316e3f2] stdnum/us/ptin.py: Add a United States PTIN module
A Preparer Tax Identification Number (PTIN) is United States
identification number for tax return preparers. It is an
eight-digit number prefixed with a capital P.
2013-10-11 Arthur de Jong <[email protected]>
* [47ea6ea] stdnum/us/atin.py: Add a United States ATIN module
An Adoption Taxpayer Identification Number (ATIN) is a temporary
nine-digit number issued by the United States IRS for a child for
whom the adopting parents cannot obtain a Social Security Number.
2013-10-11 Arthur de Jong <[email protected]>
* [b1c9ba5] stdnum/us/ein.dat, stdnum/us/ein.py: Add a United
States EIN module
The Employer Identification Number (EIN), also known as Federal
Employer Identification Number (FEIN), is used to identify a
business entity in the United States. It is issued to anyone
that has to pay withholding taxes on employees.
2013-10-11 Arthur de Jong <[email protected]>
* [19039f7] stdnum/us/itin.py: Add a United States ITIN module
The ITIN (Individual Taxpayer Identification Number) is issued
by the United States IRS to individuals who are required to
have a taxpayer identification number but who are not eligible
to obtain a Social Security Number.
2013-10-11 Arthur de Jong <[email protected]>
* [70b974b] stdnum/meid.py: Remove unused import
2013-11-08 Arthur de Jong <[email protected]>
* [f122c88] stdnum/util.py: Try to replace Unicode characters
with ASCII
This changes the stdnum.util.clean() method that is used by all
modules to replace alternative Unicode dashes, dots, etc. by
their ASCII equivalent so the numbers will be automatically
converted and validated.
Inspiration for this change came from
https://github.com/JNRowe/pyisbn/pull/6
2013-06-14 Arthur de Jong <[email protected]>
* [c042f02] ChangeLog, NEWS, stdnum/__init__.py: Get files ready
for 0.8.1 release
2013-06-14 Arthur de Jong <[email protected]>
* [31e5e81] MANIFEST.in, setup.py: Ensure that all used files are
included in the sdist
2013-06-09 Arthur de Jong <[email protected]>
* [7fa9822] ChangeLog, NEWS, README, docs/index.rst, getnumlist.py,
setup.py, stdnum/__init__.py: Get files ready for 0.8 release
2013-06-09 Arthur de Jong <[email protected]>
* [9597010] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
stdnum/isil.dat: Update database files
We manually tweak the Finland IBAN entry. We should probably
change the parsing so that it uses the IBAN structure instead
of the BBAN structure.
2013-06-09 Arthur de Jong <[email protected]>
* [19cbb3c] stdnum/my/nric.py: Fix NRIC module description
2013-06-08 Arthur de Jong <[email protected]>
* [46a7996] getmybp.py, stdnum/my/__init__.py, stdnum/my/bp.dat,
stdnum/my/nric.py, tests/test_my_nric.doctest: Add a Malaysian
NRIC No. module
NRIC No. (National Registration Identity Card Number) is the
unique identifier for issued to Malaysian citizens and permanent
residents.
2013-06-08 Arthur de Jong <[email protected]>
* [999f2c3] : Provide a validate() function in all modules
This provides an additional means of doing number validation that
allows applications calling this library to get more information
about why the validation failed and present more informative
messages to the user.
This introduces a collection of exceptions which will be raised
by the validate() function in each module. All modules have been
updated to provide this new function.
2013-05-22 Arthur de Jong <[email protected]>
* [cb69921] README, docs/index.rst, docs/stdnum.exceptions.rst:
Document the validate() function and exceptions
2013-05-18 Arthur de Jong <[email protected]>
* [e00744c] stdnum/util.py: Use validate() in stdnum.util
2013-05-17 Arthur de Jong <[email protected]>
* [3d3a97d] stdnum/us/ssn.py: Implement validate() for U.S. Social
Security Number
2013-05-17 Arthur de Jong <[email protected]>
* [4bfce3f] stdnum/eu/vat.py, tests/test_eu_vat.doctest: Implement
validate() for European VAT numbers
2013-05-17 Arthur de Jong <[email protected]>
* [1aaf902] stdnum/sk/dph.py, stdnum/sk/rc.py: Implement validate()
for Slovak numbers
2013-05-17 Arthur de Jong <[email protected]>
* [8982d1e] stdnum/si/ddv.py: Implement validate() for Slovenian
VAT numbers
2013-05-17 Arthur de Jong <[email protected]>
* [522a599] stdnum/se/vat.py: Implement validate() for Swedish
VAT numbers
2013-05-17 Arthur de Jong <[email protected]>
* [8e7d807] stdnum/pt/nif.py: Implement validate() for Portuguese
VAT numbers
2013-05-17 Arthur de Jong <[email protected]>
* [7e865db] stdnum/pl/nip.py: Implement validate() for Polish numbers
2013-05-17 Arthur de Jong <[email protected]>
* [96c5080] stdnum/mt/vat.py: Implement validate() for Maltese
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [2ff4950] stdnum/lv/pvn.py: Implement validate() for Latvian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [9845b0a] stdnum/lu/tva.py: Implement validate() for Luxembourgian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [04cfb84] stdnum/lt/pvm.py: Implement validate() for Lithuanian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [b1d5a72] stdnum/it/iva.py: Implement validate() for Italian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [083993b] stdnum/ie/pps.py, stdnum/ie/vat.py: Implement validate()
for Irish numbers
2013-05-17 Arthur de Jong <[email protected]>
* [301ba25] stdnum/hu/anum.py: Implement validate() for Hungarian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [31f2684] stdnum/hr/oib.py: Implement validate() for Croatian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [1932f69] stdnum/gr/vat.py: Implement validate() for Greek numbers
2013-05-17 Arthur de Jong <[email protected]>
* [10710dc] stdnum/gb/vat.py, tests/test_gb_vat.doctest: Implement
validate() for United Kingdom numbers
2013-05-17 Arthur de Jong <[email protected]>
* [4753c09] stdnum/fi/alv.py, stdnum/fi/hetu.py,
tests/test_fi_hetu.doctest: Implement validate() for Finnish
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [2259cbb] stdnum/es/cif.py, stdnum/es/dni.py, stdnum/es/nie.py,
stdnum/es/nif.py: Implement validate() for Spanish numbers
2013-05-17 Arthur de Jong <[email protected]>
* [07c66e1] stdnum/ee/kmkr.py: Implement validate() for Estonian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [8caecc5] stdnum/dk/cpr.py, stdnum/dk/cvr.py: Implement validate()
for Danish numbers
2013-05-17 Arthur de Jong <[email protected]>
* [360480b] stdnum/de/vat.py: Implement validate() for German numbers
2013-05-17 Arthur de Jong <[email protected]>
* [fce6196] stdnum/cy/vat.py: Implement validate() for Cypriot
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [14e382f] stdnum/cz/dic.py, stdnum/cz/rc.py: Implement validate()
for Czech numbers
2013-05-17 Arthur de Jong <[email protected]>
* [54ce2d7] stdnum/br/cpf.py: Implement validate() for Brazillian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [6080907] stdnum/bg/egn.py, stdnum/bg/pnf.py, stdnum/bg/vat.py,
tests/test_bg_vat.doctest: Implement validate() for Bulgarian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [33ce4e9] stdnum/be/vat.py: Implement validate() for Belgian
numbers
2013-05-17 Arthur de Jong <[email protected]>
* [66d6259] stdnum/at/uid.py: Implement validate() for Austrian
numbers
2013-05-11 Arthur de Jong <[email protected]>
* [05547a4] stdnum/ro/cf.py, stdnum/ro/cnp.py: Implement validate()
for Romanian numbers
2013-05-17 Arthur de Jong <[email protected]>
* [fc1432c] stdnum/fr/siren.py, stdnum/fr/tva.py: Implement
validate() for French numbers
2013-05-05 Arthur de Jong <[email protected]>
* [62cafb4] stdnum/nl/bsn.py, stdnum/nl/btw.py,
stdnum/nl/onderwijsnummer.py: Implement validate() for Dutch
numbers
2013-05-04 Arthur de Jong <[email protected]>
* [cf88e23] stdnum/meid.py, tests/test_meid.doctest: Implement
validate() for MEID
2013-05-04 Arthur de Jong <[email protected]>
* [c6f41f6] stdnum/issn.py: Implement validate() for ISSN
2013-05-04 Arthur de Jong <[email protected]>
* [21f07b3] stdnum/ismn.py, tests/test_ismn.doctest: Implement
validate() for ISMN
2013-05-04 Arthur de Jong <[email protected]>
* [c07609f] stdnum/isil.py: Implement validate() for ISIL
2013-05-04 Arthur de Jong <[email protected]>
* [a18f1ac] stdnum/isan.py, tests/test_isan.doctest: Implement
validate() for ISAN
2013-05-01 Arthur de Jong <[email protected]>
* [3ac8164] stdnum/iban.py: Implement validate() for IBAN
2013-05-03 Arthur de Jong <[email protected]>
* [12bd684] stdnum/grid.py: Implement validate() for GRid numbers
2013-05-04 Arthur de Jong <[email protected]>
* [9cee495] stdnum/imsi.py: Implement validate() for IMSI
2013-05-04 Arthur de Jong <[email protected]>
* [6e4bb71] stdnum/imei.py, tests/test_imei.doctest: Implement
validate() for IMEI numbers
2013-05-04 Arthur de Jong <[email protected]>
* [efa2550] stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
stdnum/iso7064/mod_97_10.py, tests/test_iso7064.doctest: Implement
validate() for ISO 7064 algorithms
2013-05-03 Arthur de Jong <[email protected]>
* [5c9090b] stdnum/verhoeff.py, tests/test_verhoeff.doctest:
Implement validate() for the Verhoeff checksum
2013-05-03 Arthur de Jong <[email protected]>
* [9ad5139] stdnum/luhn.py, tests/test_luhn.doctest: Implement
validate() for the Luhn algorithms
2013-05-03 Arthur de Jong <[email protected]>
* [9580046] stdnum/isbn.py, tests/test_isbn.doctest: Implement
validate() for ISBN
2013-05-03 Arthur de Jong <[email protected]>
* [fa1864f] stdnum/ean.py, tests/test_ean.doctest: Implement
validate() for EAN
2013-06-07 Arthur de Jong <[email protected]>
* [8b9ef8f] stdnum/util.py: Raise a proper exception if cleaning
fails
2013-06-07 Arthur de Jong <[email protected]>
* [1ac5437] setup.cfg, stdnum/exceptions.py: Provide a module with
validation exceptions
This introduces a new module for switching the validation
scheme. Instead of using the is_valid() function that returns
a boolean a validate() function either returns the sanitised
number or raises an exception that should indicate the kind of
validation failure.
This should make it easier for applications calling this library
to present more informative messages to the user.
2013-06-07 Arthur de Jong <[email protected]>
* [99586c9] stdnum/__init__.py, stdnum/de/vat.py, stdnum/nl/bsn.py,
stdnum/util.py: Revert generating stdnum docstring dynamically
Generating the docstring dynamically results in all stdnum modules
being imported for every import from any stdnum module which is
a performance hit.
So we switch back to a manually generated list, using:
from stdnum.util import get_module_list print
'\n'.join(get_module_list())
This also shortens a few short descriptions to attempt to fit
things on one line.
2013-06-07 Arthur de Jong <[email protected]>
* [a655e82] docs/conf.py, docs/index.rst: Documentation consistency
improvements
2013-06-07 Arthur de Jong <[email protected]>
* [37a2afd] tests/test_iso7064.doctest: The robustness test were
moved to the general tests
2013-06-07 Arthur de Jong <[email protected]>
* [90b7c4a] stdnum/numdb.py: Remove empty line
2013-06-07 Arthur de Jong <[email protected]>
* [bcb0a0b] stdnum/grid.py: GRid's format() function shouldn't
have add_check_digit parameter
2013-04-26 Arthur de Jong <[email protected]>
* [2d956eb] stdnum/util.py: Use a cleaner way to get all stdnum
modules
This mechanism should work from Python 2.6 up to and including
Python 3.3.
2013-04-26 Arthur de Jong <[email protected]>
* [30c832f] stdnum/numdb.py: Fix doctest to not be dependant on
dict ordering
2013-04-26 Arthur de Jong <[email protected]>
* [51a55be] .gitignore: Add a .gitignore file
2012-09-22 Arthur de Jong <[email protected]>
* [3f6d52a] stdnum/__init__.py, stdnum/util.py: generate part of
the stdnum docstring based on introspection of the modules
2012-06-16 Arthur de Jong <[email protected]>
* [af7e837] : set svn:ignore properly
2012-02-26 Arthur de Jong <[email protected]>
* [8f2e44c] stdnum/bg/egn.py, stdnum/cz/rc.py, stdnum/dk/cpr.py,
stdnum/fi/hetu.py, stdnum/isan.py, stdnum/lv/pvn.py,
stdnum/meid.py, stdnum/ro/cnp.py, tests/test_isan.doctest,
tests/test_ismn.doctest, tests/test_robustness.doctest: re-add
Python3 support
2012-02-26 Arthur de Jong <[email protected]>
* [3325052] ChangeLog, NEWS, stdnum/__init__.py: get files ready
for 0.7 release
2012-02-26 Arthur de Jong <[email protected]>
* [a3ba206] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
stdnum/isil.dat: update data files
2012-02-26 Arthur de Jong <[email protected]>
* [c240eff] getnumlist.py: also generate a list of modules for
use in the Spinx documentation
2012-02-26 Arthur de Jong <[email protected]>
* [54b0f47] README, getnumlist.py, stdnum/__init__.py: use a script
to generate the list of number formats in stdnum
2012-02-26 Arthur de Jong <[email protected]>
* [dada6a4] stdnum/eu/vat.py, stdnum/gb/vat.py, stdnum/gr/vat.py,
stdnum/grid.py, stdnum/hr/oib.py, stdnum/hu/anum.py,
stdnum/iban.py, stdnum/ie/pps.py, stdnum/ie/vat.py,
stdnum/imei.py, stdnum/isan.py, stdnum/iso7064/__init__.py,
stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
stdnum/iso7064/mod_97_10.py, stdnum/lt/pvm.py, stdnum/luhn.py,
stdnum/meid.py, stdnum/verhoeff.py: some more documentation
improvements
2012-02-26 Arthur de Jong <[email protected]>
* [13218a0] setup.py: make script executable
2012-02-26 Arthur de Jong <[email protected]>
* [c2f0ea2] stdnum/fr/siren.py: add a to_vta() function to the
stdnum.fr.siren module
2012-02-26 Arthur de Jong <[email protected]>
* [902a656] stdnum/__init__.py, stdnum/at/uid.py, stdnum/be/vat.py,
stdnum/bg/egn.py, stdnum/bg/pnf.py, stdnum/bg/vat.py,
stdnum/br/cpf.py, stdnum/cy/vat.py, stdnum/cz/dic.py,
stdnum/cz/rc.py, stdnum/de/vat.py, stdnum/dk/cpr.py,
stdnum/dk/cvr.py, stdnum/ean.py, stdnum/ee/kmkr.py,
stdnum/es/cif.py, stdnum/es/dni.py, stdnum/es/nie.py,
stdnum/es/nif.py, stdnum/eu/vat.py, stdnum/fi/alv.py,
stdnum/fi/hetu.py, stdnum/fr/siren.py, stdnum/fr/tva.py,
stdnum/gb/vat.py, stdnum/gr/vat.py, stdnum/grid.py,
stdnum/hr/oib.py, stdnum/hu/anum.py, stdnum/iban.py,
stdnum/ie/pps.py, stdnum/ie/vat.py, stdnum/imei.py, stdnum/imsi.py,
stdnum/isan.py, stdnum/isbn.py, stdnum/isil.py, stdnum/ismn.py,
stdnum/iso7064/__init__.py, stdnum/iso7064/mod_11_10.py,
stdnum/iso7064/mod_11_2.py, stdnum/iso7064/mod_37_2.py,
stdnum/iso7064/mod_37_36.py, stdnum/iso7064/mod_97_10.py,
stdnum/issn.py, stdnum/it/iva.py, stdnum/lt/pvm.py,
stdnum/lu/tva.py, stdnum/luhn.py, stdnum/lv/pvn.py,
stdnum/meid.py, stdnum/mt/vat.py, stdnum/nl/bsn.py,
stdnum/nl/btw.py, stdnum/nl/onderwijsnummer.py, stdnum/numdb.py,
stdnum/pl/nip.py, stdnum/pt/nif.py, stdnum/ro/cf.py,
stdnum/ro/cnp.py, stdnum/se/vat.py, stdnum/si/ddv.py,
stdnum/sk/dph.py, stdnum/sk/rc.py, stdnum/us/ssn.py,
stdnum/util.py, stdnum/verhoeff.py: ensure that the module
docstrings are in a somewhat more usable format
2012-02-25 Arthur de Jong <[email protected]>
* [907e410] setup.py: add the optional dependency on suds for the
stdnum.eu.vat.check_vies() function
2012-02-24 Arthur de Jong <[email protected]>
* [ae9268b] stdnum/cz/rc.py: make the get_birth_date() function
publically available
2012-02-24 Arthur de Jong <[email protected]>
* [4dfc8d7] docs/_templates/autosummary/module.rst, docs/conf.py,
docs/index.rst, docs/stdnum.at.uid.rst, docs/stdnum.be.vat.rst,
docs/stdnum.bg.egn.rst, docs/stdnum.bg.pnf.rst,
docs/stdnum.bg.vat.rst, docs/stdnum.br.cpf.rst,
docs/stdnum.cy.vat.rst, docs/stdnum.cz.dic.rst,
docs/stdnum.cz.rc.rst, docs/stdnum.de.vat.rst,
docs/stdnum.dk.cpr.rst, docs/stdnum.dk.cvr.rst,
docs/stdnum.ean.rst, docs/stdnum.ee.kmkr.rst,
docs/stdnum.es.cif.rst, docs/stdnum.es.dni.rst,
docs/stdnum.es.nie.rst, docs/stdnum.es.nif.rst,
docs/stdnum.eu.vat.rst, docs/stdnum.fi.alv.rst,
docs/stdnum.fi.hetu.rst, docs/stdnum.fr.siren.rst,
docs/stdnum.fr.tva.rst, docs/stdnum.gb.vat.rst,
docs/stdnum.gr.vat.rst, docs/stdnum.grid.rst,
docs/stdnum.hr.oib.rst, docs/stdnum.hu.anum.rst,
docs/stdnum.iban.rst, docs/stdnum.ie.pps.rst,
docs/stdnum.ie.vat.rst, docs/stdnum.imei.rst, docs/stdnum.imsi.rst,
docs/stdnum.isan.rst, docs/stdnum.isbn.rst, docs/stdnum.isil.rst,
docs/stdnum.ismn.rst, docs/stdnum.iso7064.rst,
docs/stdnum.issn.rst, docs/stdnum.it.iva.rst,
docs/stdnum.lt.pvm.rst, docs/stdnum.lu.tva.rst,
docs/stdnum.luhn.rst, docs/stdnum.lv.pvn.rst, docs/stdnum.meid.rst,
docs/stdnum.mt.vat.rst, docs/stdnum.nl.bsn.rst,
docs/stdnum.nl.btw.rst, docs/stdnum.nl.onderwijsnummer.rst,
docs/stdnum.pl.nip.rst, docs/stdnum.pt.nif.rst,
docs/stdnum.ro.cf.rst, docs/stdnum.ro.cnp.rst,
docs/stdnum.se.vat.rst, docs/stdnum.si.ddv.rst,
docs/stdnum.sk.dph.rst, docs/stdnum.sk.rc.rst,
docs/stdnum.us.ssn.rst, docs/stdnum.verhoeff.rst, setup.cfg:
generate documentation using Sphinx
2012-02-23 Arthur de Jong <[email protected]>
* [093b1a1] README, stdnum/__init__.py, stdnum/dk/cpr.py: add a CPR
(personnummer, the Danish citizen number) module
2012-02-23 Arthur de Jong <[email protected]>
* [89e4d78] README, stdnum/__init__.py, stdnum/ie/pps.py: add a PPS
No (Personal Public Service Number, Irish personal number) module
2012-02-22 Arthur de Jong <[email protected]>
* [3a9c407] README, stdnum/__init__.py, stdnum/hr/__init__.py,
stdnum/hr/oib.py: add an OIB (Osobni identifikacijski broj,
Croatian personal identification number) module
2012-02-20 Arthur de Jong <[email protected]>
* [680b7d1] numdb-test.dat, stdnum/numdb.py, test.dat: rename
numdb test file
2012-02-20 Arthur de Jong <[email protected]>
* [68f62bf] stdnum/eu/vat.py: add a stdnum.eu.vat.check_vies()
function to do an on-line check of the VAT number
2012-02-19 Arthur de Jong <[email protected]>
* [e640e3b] stdnum/iban.py, stdnum/numdb.py: add "pragma: no cover"
statements to code that isn't expected to be covered
2012-02-19 Arthur de Jong <[email protected]>
* [b561d59] README, stdnum/__init__.py, stdnum/eu/__init__.py,
stdnum/eu/vat.py, tests/test_eu_vat.doctest: add a VAT (European
Union VAT number) module
2012-02-19 Arthur de Jong <[email protected]>
* [61af19d] README, stdnum/__init__.py: make number description
consistent
2012-02-19 Arthur de Jong <[email protected]>
* [eeb5c61] stdnum/at/__init__.py, stdnum/cz/__init__.py,
stdnum/dk/__init__.py, stdnum/ee/__init__.py,
stdnum/es/__init__.py, stdnum/fi/__init__.py,
stdnum/fr/__init__.py, stdnum/hu/__init__.py,
stdnum/it/__init__.py, stdnum/lt/__init__.py,
stdnum/lu/__init__.py, stdnum/lv/__init__.py,
stdnum/nl/__init__.py, stdnum/pl/__init__.py,
stdnum/pt/__init__.py, stdnum/ro/__init__.py,
stdnum/si/__init__.py, stdnum/sk/__init__.py: for all countries,
provide vat as an alias for the local vat identifier
2012-02-19 Arthur de Jong <[email protected]>
* [6755b94] stdnum/at/__init__.py, stdnum/be/__init__.py,
stdnum/bg/__init__.py, stdnum/br/__init__.py,
stdnum/cy/__init__.py, stdnum/cz/__init__.py,
stdnum/de/__init__.py, stdnum/dk/__init__.py,
stdnum/ee/__init__.py, stdnum/es/__init__.py,
stdnum/fi/__init__.py, stdnum/fr/__init__.py,
stdnum/gb/__init__.py, stdnum/gr/__init__.py,
stdnum/hu/__init__.py, stdnum/ie/__init__.py,
stdnum/it/__init__.py, stdnum/lt/__init__.py,
stdnum/lu/__init__.py, stdnum/lv/__init__.py,
stdnum/mt/__init__.py, stdnum/nl/__init__.py,
stdnum/pl/__init__.py, stdnum/pt/__init__.py,
stdnum/ro/__init__.py, stdnum/se/__init__.py,
stdnum/si/__init__.py, stdnum/sk/__init__.py,
stdnum/us/__init__.py: give all packages a description
2012-02-19 Arthur de Jong <[email protected]>
* [6d74fe9] stdnum/nl/vat.py: remove stdnum.nl.vat alias module
2012-02-19 Arthur de Jong <[email protected]>
* [528901d] stdnum/util.py, tests/test_robustness.doctest: use
introspection to find number modules and test them
2012-02-18 Arthur de Jong <[email protected]>
* [2d80a24] README, stdnum/__init__.py, stdnum/bg/vat.py,
tests/test_bg_vat.doctest, tests/test_robustness.doctest: add
a VAT (Идентификационен номер по ДДС,
Bulgarian VAT numbers) module
2012-02-18 Arthur de Jong <[email protected]>
* [1384488] README, stdnum/__init__.py, stdnum/bg/pnf.py,
tests/test_robustness.doctest: add a PNF (ЛНЧ, Личен
номер на чужденец, Bulgarian personal number of
a foreigner) module
2012-02-18 Arthur de Jong <[email protected]>
* [a24e98e] README, stdnum/__init__.py, stdnum/bg/__init__.py,
stdnum/bg/egn.py, tests/test_robustness.doctest: add an EGN
(ЕГН, Единен граждански номер, Bulgarian
personal identity codes) module
2012-02-18 Arthur de Jong <[email protected]>
* [4ac3fe7] tests/test_robustness.doctest: explicitly test for False
2012-02-18 Arthur de Jong <[email protected]>
* [0c78d90] stdnum/lt/pvm.py: explicitly return False if no
rule matches
2012-02-18 Arthur de Jong <[email protected]>
* [cddb5f9] README, stdnum/__init__.py, stdnum/gb/__init__.py,
stdnum/gb/vat.py, tests/test_gb_vat.doctest,
tests/test_robustness.doctest: add a VAT (United Kingdom (and
Isle of Man) VAT registration number) module
2012-02-18 Arthur de Jong <[email protected]>
* [6c436ec] tests/test_fi_hetu.doctest: fix typo
2012-02-18 Arthur de Jong <[email protected]>
* [aa39c92] README, stdnum/__init__.py, stdnum/se/__init__.py,
stdnum/se/vat.py, tests/test_robustness.doctest: add a VAT (Moms,
Mervärdesskatt, Swedish VAT number) module
2012-02-18 Arthur de Jong <[email protected]>
* [3a7a91c] README, stdnum/__init__.py, stdnum/si/__init__.py,
stdnum/si/ddv.py, tests/test_robustness.doctest: add a ID za DDV
(Davčna številka, Slovenian VAT number) module
2012-02-18 Arthur de Jong <[email protected]>
* [ebbd1af] README, stdnum/__init__.py, stdnum/pl/__init__.py,
stdnum/pl/nip.py, tests/test_robustness.doctest: add a NIP
(Numer Identyfikacji Podatkowej, Polish VAT number) module
2012-02-18 Arthur de Jong <[email protected]>
* [c75f072] README, stdnum/__init__.py, stdnum/mt/__init__.py,
stdnum/mt/vat.py, tests/test_robustness.doctest: add a VAT
(Maltese VAT number) module
2012-02-17 Arthur de Jong <[email protected]>
* [0922f3c] stdnum/it/iva.py: strip a few more separators
2012-02-17 Arthur de Jong <[email protected]>
* [b708920] README, stdnum/__init__.py, stdnum/fr/tva.py,
tests/test_robustness.doctest: add a TVA (Numéro d'identification
à la taxe sur la valeur ajoutée, French VAT number) module
2012-02-17 Arthur de Jong <[email protected]>
* [dc8e9a3] README, stdnum/__init__.py, stdnum/lt/__init__.py,
stdnum/lt/pvm.py, tests/test_robustness.doctest: add a PVM
(Pridėtinės vertės mokestis mokėtojo kodas, Lithuanian VAT
number) module
2012-02-17 Arthur de Jong <[email protected]>