Metadata-Version: 2.1
Name: prenoms
Version: 0.1.8
Summary: Générateur de noms aléatoire
Home-page: https://github.com/cnovel/prenoms
Author: Cyril Novel
Author-email: pypi-prenoms@kosmon.fr
License: MIT
Description: # prenoms
        
        [![Build Status](https://travis-ci.com/cnovel/prenoms.svg?branch=master)](https://travis-ci.com/cnovel/prenoms) [![CodeCoveragge](https://codecov.io/gh/cnovel/prenoms/branch/master/graph/badge.svg)](https://codecov.io/gh/cnovel/prenoms)
        
        Générateur de prénoms
        
        ## Installation
        
        Le script est disponible sur PyPI. Pour installer avec pip :
        
            pip install prenoms
        
        ## Utilisation
        `prenoms` peut être utilisé via la ligne de commande ou importé comme paquet Python.
        
        ### Utilisation depuis la ligne de commande
        Pour utiliser `prenoms` depuis la ligne de commande :
        
        ```bash
        $ prenoms
        Jean Dupont
        ```
        
        ### Utilisation du paquet Python
        Quelques exemples d'utilisation :
        
        ```python
            >>> import prenoms
            >>> prenoms.get_nom_complet()
            'Jean Bernard'
            >>> prenoms.get_prenom()
            'Lucie'
            >>> prenoms.get_nom()
            'Lefevre'
            >>> prenoms.get_prenom(originality=1)
            'Hortensius'
        ```
        
        
        Le paramètre `originality` permet de spécifier l'originalité du nom. Une originalité proche de 0 va retourner des noms communs, une originalité proche de 1 va retourner des noms rares.
        
        ## Licence
        Ce projet est sous licence MIT.
        
        Les données suivante proviennent de l'INSEE et appartiennent au domaine public :
        
        - dist.prenoms.txt
        - dist.noms.txt
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
