No project description provided
Project description
CodeGenLoader is a Python import hook that transparently runs a code generator at import time, allowing the use of generated code without a separate compilation step. The package includes an extensible base class as well as implementations for the Protocol Buffer and Thrift code generators.
Installation
pip install codegenloader
Prerequisites
CodeGenLoader runs on Python 2 (2.5+) and 3, including pypy and jython. The base class does not have any external dependencies, but to use the Thrift or Protocol Buffer subclasses you will need the thrift or protobuf packages installed. Note that protobuf 3.0.0 (currently in alpha) is required to use protobuf on Python 3.
Example
Add the following two lines to mypackage/proto/__init__.py:
import codegenloader.protobuf __path__ = codegenloader.protobuf.make_path(__name__, ".")
Now, assuming foo.proto exists in in mypackage/proto/, you can do:
from mypackage.proto.foo_pb2 import Foo
More info
The source code is hosted at https://github.com/bdarnell/codegenloader Detailed documentation can be found at http://codegenloader.readthedocs.org
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file codegenloader-0.2.tar.gz
.
File metadata
- Download URL: codegenloader-0.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d437babb803a1345b34177826493d49e12526f789c9c789f6774f937fc7de627 |
|
MD5 | 7b9dbfa2a2db2ccc4471a2902ca19aec |
|
BLAKE2b-256 | b8c642b46543610ca9576753d269d316a4da9fcd1274f6e8188f216449e56fbf |