polimer

0

Описание

Automated call stack synthesis framework (annotations based)

Языки

  • Python100%
год назад
год назад
год назад
README.md

polimer

polimer is an automated callstack synthesis framework (based on annotations)

Basic idea

  • Define annotations based on payload id (not just type id)
    • e.g.
      l: 'price_list'
      insead of
      l: list
  • Automatically invoke argument initializers based on payload id
    • e.g. call
      def get_price_list() -> 'price_list'
  • Simplify end-user code

Quick-demo

  1. Install polimer
  1. Annotate your methods with payload ids:
prices.py
  1. Import your entrypoints via polimer
demo.py