How to generate python for working with specific .proto file
1. Install protobuf via instructions http://google.github.io/proto-lens/installing-protoc.html
под Linux:
`sudo apt-get install protobuf-compiler`
под MAC:
`brew install protobuf`

2. Generate python code with command
```
cd ticket_daemon_lib/protobuf_converting/big_wizard/
protoc --python_out=. search_result.proto
```
3. import generated python code to your project

WARNING
под Убунту ставится пакет с версией libprotoc 2.5.0, где не поддерживается синтаксис map, поэтому собираем локально с мака на 3.6.0

