egoist

-


Install
pip install egoist==0.0.4

Documentation

Python package PyPi version Code style: black

egoist

🚧 this project is under construction 🚧

installing

$ pip install egoist

features

  • go code generation
  • general code generation

go code generation

$ egoist init clikit
level:INFO	message:create .                                	name:egoist.cliL25
$ tree .
.
└── definitions.py

0 directories, 1 file
$ python definitions.py generate
[D]	create	cmd/hello
[F]	create	cmd/hello/main.go
$ go run cmd/hello/main.go -name="world"
hello world

🎉

general code generation

$ egoist init dirkit
level:INFO	message:create .                                	name:egoist.cliL25
$ tree .
.
├── definitions.py
└── input
    └── hello.tmpl

1 directories, 2 file
$ python definitions.py generate
[D]	create	./output
[F]	create	./output/foo.json
[F]	create	./output/bar.json
[F]	create	./output/boo.json
$ cat ./output/*.json
hello bar
hello boo
hello foo

✨