- for JS - https://github.com/SimplePEG/Tchaikovsky-JavaScript
- for Python - https://github.com/SimplePEG/Tchaikovsky-Python
- for JS - https://github.com/SimplePEG/JavaScript
- for Python - https://github.com/SimplePEG/Python
| from abc import ABC, ABCMeta, abstractmethod | |
| from collections import namedtuple | |
| from itertools import count | |
| PayloadFactory = namedtuple('PayloadFactory', [ | |
| 'good', 'created', 'queued', 'unchanged', 'requires_auth', | |
| 'permission_denied', 'not_found', 'invalid', 'error' | |
| ]) | |
| """ |