Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# -*- coding: UTF-8 -*- 

# Copyright 2012-2015 Luc Saffre 

# License: BSD (see file COPYING for details) 

 

u"""A collection of tools for generating fictive people and addresses. 

 

This module is used by 

 

- :mod:`lino.modlib.contacts.fixtures.demo` 

- :mod:`lino_xl.lib.addresses.fixtures.demo2` 

- :mod:`garble <lino.modlib.contacts.management.commands.garble_persons>` 

- :mod:`garble <lino_welfare.modlib.pcsw.management.commands.garble>` 

 

.. autosummary:: 

   :toctree: 

 

   bel 

   est 

   rus 

 

 

 

""" 

 

 

from .bel import LAST_NAMES_BELGIUM 

from .bel import MALE_FIRST_NAMES_FRANCE 

from .bel import FEMALE_FIRST_NAMES_FRANCE 

 

from .bel import LAST_NAMES_MUSLIM 

from .bel import MALE_FIRST_NAMES_MUSLIM 

from .bel import FEMALE_FIRST_NAMES_MUSLIM 

 

from .bel import LAST_NAMES_AFRICAN 

from .bel import FEMALE_FIRST_NAMES_AFRICAN 

from .bel import MALE_FIRST_NAMES_AFRICAN 

 

from .bel import streets_of_liege 

 

from .est import streets_of_tallinn 

from .est import LAST_NAMES_ESTONIA 

from .est import MALE_FIRST_NAMES_ESTONIA 

from .est import FEMALE_FIRST_NAMES_ESTONIA 

 

from .rus import LAST_NAMES_RUSSIA 

from .rus import MALE_FIRST_NAMES_RUSSIA 

from .rus import FEMALE_FIRST_NAMES_RUSSIA