Metadata-Version: 2.1
Name: generateGUID
Version: 1.3
Summary: UNKNOWN
Home-page: https://github.com/Slowblitz/GUID-core
Author: jeremy garcia
Author-email: jeremy.garcia@univ-amu.fr
License: UNKNOWN
Description: # GUID-core
        Tool to generate GUID using sha256
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install GUID-core.
        
        ```bash
        pip install generateGUID
        ```
        
        ## Usage
        
        ```python
        import generate_GUID
        
        generate_GUID.generate_GUID(string) # returns guid
        
        
        
        firstname=string
        lastname=string
        dateOfBirth=string 
        gender=string
        
        generate_GUID.generate_GUID2(firstname,lastname,dateOfBirth,gender) # returns guid
        
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
