th2_grpc_data_provider
Project description
th2 gRPC generator template library
This is the template project for creating custom gRPC libraries. It contains example proto messages and services.
Tool generates code from .proto files and uploads built packages (.proto files and generated code) to specified repositories.
How to transform template
- Create a directory with the same name as project name (use underscores instead of dashes) under
src/main/protodirectory (remove other files and directories if they exist). - Place your custom
.protofiles in created directory. Pay attention topackagespecifier andimportstatements. - Edit
release_versionandvcs_urlproperties ingradle.propertiesfile. - Edit
rootProject.namevariable insettings.gradlefile. This will be the name of Java package. - Edit
package_info.jsonfile in order to specify name and version for Python package (create file if it's absent). - Edit parameters of
setup.pyinsetupfunction invocation such as:author,author_email,url. Do not edit the others. - Edit
README.mdfile according to the new project.
Note that the name of created directory under src/main/proto directory is used in Python (it's a package name).
How to maintain project
- Make your changes.
- Up version of Java package in
gradle.propertiesfile. - Up version of Python package in
package_info.jsonfile. - Commit everything.
How to run project
Java
If you wish to manually create and publish package for Java, run these command:
gradle --no-daemon clean build publish artifactoryPublish \
-Pbintray_user=${BINTRAY_USER} \
-Pbintray_key=${BINTRAY_KEY}
BINTRAY_USER and BINTRAY_KEY are parameters for publishing.
Python
If you wish to manually create and publish package for Python:
- Generate services by gradle:
You can find the generated files by following path:gradle --no-daemon clean generateProtosrc/gen/main/services/python - Generate code from
.protofiles and publish everything:pip install -r requirements.txt python setup.py generate python setup.py sdist twine upload --repository-url ${PYPI_REPOSITORY_URL} --username ${PYPI_USER} --password ${PYPI_PASSWORD} dist/*PYPI_REPOSITORY_URL,PYPI_USERandPYPI_PASSWORDare parameters for publishing.
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 th2_grpc_data_provider-0.0.4.dev982854974.tar.gz.
File metadata
- Download URL: th2_grpc_data_provider-0.0.4.dev982854974.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f13fac7c96501271ede729316d9c9ede7195069999805eaaf7cfea618fe704f
|
|
| MD5 |
3bc574a4ad14a5c9eed88fad5be61853
|
|
| BLAKE2b-256 |
8b7b02997f908b1ac2d7bbc33018d3263b1fa8e61745f1c92d843a409349be9b
|