This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # encoding: utf-8 | |
| """A simple mail delivery API. | |
| Install in a venv: | |
| $ curl get.web-core.org | python - MailAPI | |
| $ cd MailAPI; . bin/activate | |
| $ pip install marrow.mailer, mako | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Steps: | |
| 1. Create any milestones | |
| 2. Create any labels | |
| 3. Create each issue, linking them to milestones and labels | |
| 3.1: Update status for new issue if closed | |
| 4: Create all the comments for each issue | |
| ''' | |
| import getpass | |
| import json |