├── .gitattributes ├── .gitignore ├── CHANGES.txt ├── LICENSE ├── README.md ├── docs ├── guide │ ├── how_does_pymg_work.md │ └── how_to_use_pymg.md └── images │ ├── exc-comb.png │ ├── exc-indentation.png │ ├── exc-inner-locals.png │ ├── exc-no-option.png │ ├── exc-search.png │ ├── exc-syntax.png │ ├── exc-trace.png │ ├── how-to-use-pymg.png │ ├── pymg-poster.png │ └── pymg-works.png ├── pymg ├── __init__.py └── pymg.py ├── requirements.txt └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/README.md -------------------------------------------------------------------------------- /docs/guide/how_does_pymg_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/guide/how_does_pymg_work.md -------------------------------------------------------------------------------- /docs/guide/how_to_use_pymg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/guide/how_to_use_pymg.md -------------------------------------------------------------------------------- /docs/images/exc-comb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-comb.png -------------------------------------------------------------------------------- /docs/images/exc-indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-indentation.png -------------------------------------------------------------------------------- /docs/images/exc-inner-locals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-inner-locals.png -------------------------------------------------------------------------------- /docs/images/exc-no-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-no-option.png -------------------------------------------------------------------------------- /docs/images/exc-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-search.png -------------------------------------------------------------------------------- /docs/images/exc-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-syntax.png -------------------------------------------------------------------------------- /docs/images/exc-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/exc-trace.png -------------------------------------------------------------------------------- /docs/images/how-to-use-pymg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/how-to-use-pymg.png -------------------------------------------------------------------------------- /docs/images/pymg-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/pymg-poster.png -------------------------------------------------------------------------------- /docs/images/pymg-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/docs/images/pymg-works.png -------------------------------------------------------------------------------- /pymg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/pymg/__init__.py -------------------------------------------------------------------------------- /pymg/pymg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/pymg/pymg.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich 2 | click 3 | requests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimseyedi/pymg/HEAD/setup.py --------------------------------------------------------------------------------