Metadata-Version: 1.1
Name: NewsChimp
Version: 0.1.1
Summary: Newsletter generator for MailChimp
Home-page: https://github.com/sputnikus/newschimp
Author: Martin Putniorz
Author-email: mputniorz@gmail.cpm
License: BSD
Description: # NewsChimp
        
        Generator of monthly newsletter campaigns on MailChimp. Based od laziness and boredom.
        
        ## Status
        
        In heavy development. Please touch anything important for fun.
        
        ## Usage
        
        ```ShellSession
            $ python3 newschimp.py --help
            Usage: newschimp.py [OPTIONS] COMMAND [ARGS]...
        
            Options:
            --config PATH  Custom config file
            --help         Show this message and exit.
        
            Commands:
            fb        Facebook curator
            gg        Google Groups curator
            lanyrd    Meetup listing
            renderer  HTML and text email rendering
            sender    Campaign creation
        ```
        
        If you want to use subcommand with config, do it in format
        
        ```ShellSession
            $ python3 newschimp.py --config PATH command
        ```
        
        ## Config
        
        Default config file is ```./config.yaml```. Here's minimalistic setting:
        
        ```YAML
            month: 
            facebook_group_id: 
            # Oldest facebook post epoch time
            since: 
            google_group_name:
            # Events for lanyrd to search
            events:
                - 
            # Input template 
            template: 
            context:
                # Additional template context
                header:
            # Template outputs
            html_output: 
            text_output:
            # MailChimp settings
            mail_list:
            subject: 
            reciever: 
            sender:
                email: 
                name: 
        ```
        
        You also need to setup environment variables (for automatic campaign creation):
        
        - ```FACEBOOK_TOKEN```
        - ```MAILCHIMP_KEY```
        
        ## Requirements
        
        Python 3 and stuff in ```requirements.txt```
        
        ## License
        
        See LICENSE file
        
        ## TODO
        
        - Logging (in combination with Click)
        - Newsletter creation wizard
        - Support of more social sources
        - Better config structure
        - Setup
        
        
Keywords: newsletter,mail,mailchimp
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: Email
