th2_grpc_crawler_data_service
Project description
th2 gRPC crawler data service 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/proto
directory (remove other files and directories if they exist). - Place your custom
.proto
files in created directory. Pay attention topackage
specifier andimport
statements. - Edit
release_version
andvcs_url
properties ingradle.properties
file. - Edit
rootProject.name
variable insettings.gradle
file. This will be the name of Java package. - Edit
package_info.json
file in order to specify name and version for Python package (create file if it's absent). - Edit parameters of
setup.py
insetup
function invocation such as:author
,author_email
,url
. Do not edit the others. - Edit
README.md
file 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.properties
file. - Up version of Python package in
package_info.json
file. - 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 generateProto
src/gen/main/services/python
- Generate code from
.proto
files 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_USER
andPYPI_PASSWORD
are 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_crawler_data_service-0.0.1.dev986958910.tar.gz
.
File metadata
- Download URL: th2_grpc_crawler_data_service-0.0.1.dev986958910.tar.gz
- Upload date:
- Size: 8.6 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.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4f7b1bc4aa30560e93a1eae00a24c7fa69b48e50d8239f608ed602bc509671f |
|
MD5 | 36e24fc3790f4c71de9370e44d833af5 |
|
BLAKE2b-256 | a3580c90c07e1c1bcfef3fbbd7ac51e8e1b7a063f6fb02c290350ce3c90d3d93 |