Metadata-Version: 1.1
Name: certificator
Version: 0.0.5
Summary: Certificate Generator Tool and Library
Home-page: https://github.com/lamenezes/certificator
Author: Luiz Menezes
Author-email: luiz.menezesf@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: ============
        Certificator
        ============
        
        Event certificate generator. Currently supports CSV/JSON + Meetup integration.
        
        --------------
        How to install
        --------------
        
        ::
        
            pip install certificator
        
        
        ------------------------------------
        How to use (using meetup.com Events)
        ------------------------------------
        
        .. code:: bash
        
            certificator --urlname <your-meetup-urlname> --event-id <meetup-event-id> --meetup-api-key <your-meetup-api-key>
        
        
        ------------------------------------
        How to use (using CSV file)
        ------------------------------------
        
        With CSV files and JSON metadata:
        
        Certificate data (CSV):
        
        ::
        
            name;email
            John Doe;john@doe.com
            Jane Doe;jane@doe.com
        
        
        Metdata (JSON):
        
        ::
        
            {
              "event_title": "Eventful event for event-driven events",
              "organizer": "Eveorg",
              "place": "Event square",
              "date": "06/06/06",
              "full_date": "June 6, 2006",
              "city": "Eventville",
              "workload": "16 hours",
              "responsible": "Eve Ent Eventson",
              "responsible_title": "Event Organizer"
            }
        
        
        Generating the certificate:
        
        .. code:: python
        
            from certificator import CSVCertificator
        
            certificator = CSVCertificator(delimiter=';', filename_format='eventful-event-{name}.pdf')
            certificator.generate()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
