Metadata-Version: 1.1
Name: certificator
Version: 0.0.1
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 (TBD)
        --------------------
        
        ::
        
            pip install certificator
        
        
        ------------------------------------
        How to use (using meetup.com Events)
        ------------------------------------
        
        First you need to have a meetup API KEY (refer to meetup API docs on how to acquire it).
        Then set the environment variable `MEETUP_API_KEY` and run the following command:
        
        .. code:: bash
        
            certificator --urlname your-meetup-urlname --event-id <meetup-event-id>
        
        
        ------------------------------------
        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
