Skip to main content

An eureka client written in python, you can easily intergrate your python components with spring cloud.

Project description

python-eureka-client

Discription

This is an eureka client written in python, you can easily intergrate your python components with spring cloud.

Support Python Version

Python 2.7 / 3.6+ (It should also work at 3.5, not test)

Why choose

  • Register your python components to eureka server.
  • Support multiple eureka server registration.
  • Send heartbeat to eureka server.
  • Auto unregister from eureka server when your server down.
  • Discovery apps from eureka server.
  • Easy to use interface to use other REST service.
  • Auto try other nodes when one nodes down.

How to use

Install

pip install py_eureka_client

Rister your python REST server to eureka server

import py_eureka_client.eureka_client as eureka_client

your_rest_server_port = 9090
# The flowing code will register your server to eureka server and also start to send heartbeat every 30 seconds
eureka_client.init_registry_client(eureka_server="http://your-eureka-server-peer1,http://your-eureka-server-peer2",
                                app_name="your_app_name",
                                instance_port=your_rest_server_port)

If you do not specify your host and ip just like the example above, the client will choose one that could connect to eureka server.

Discover other service from eureka server

First, init the discovery client after your server starts up.

import py_eureka_client.eureka_client as eureka_client

eureka_client.init_discovery_client("http://192.168.3.116:8761/eureka/, http://192.168.3.116:8762/eureka/")

Then, in your business code, use

import py_eureka_client.eureka_client as eureka_client

res = eureka_client.do_service("OTHER-SERVICE-NAME", "/service/context/path")
print("result of other service" + res)

do_service method will automatically try other nodes when one node return a HTTP error, until one success or all nodes being tried.

There are several HA strategies when using discovery client. You can specify it in init_discovery_client. They are:

  • HA_STRATEGY_RANDOM, default strategy, find an node randamly.
  • HA_STRATEGY_STICK, use one node until it going down.
  • HA_STRATEGY_OTHER, always use a different node from the last time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py_eureka_client-0.2.0.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

py_eureka_client-0.2.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file py_eureka_client-0.2.0.tar.gz.

File metadata

  • Download URL: py_eureka_client-0.2.0.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for py_eureka_client-0.2.0.tar.gz
Algorithm Hash digest
SHA256 4d4f3e58d053e2af7442edda5218ccabbb0196788ca9334c04c13b08bc2f9a4f
MD5 e888d372d27f5a2412c1728d78bad1b1
BLAKE2b-256 bd5281e20669977aad5c3e570ab9f84ee374ad8ee5e3eb6e26e64667b1648f6e

See more details on using hashes here.

File details

Details for the file py_eureka_client-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: py_eureka_client-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7

File hashes

Hashes for py_eureka_client-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dfd186a264de927268adde6b7d86a716be01b351b0294c7d9b559fb3a4b59144
MD5 cdb85476013b8ae21db2812f9db35e5a
BLAKE2b-256 cdfa54ee045288dfe562d981633b2551f03f6083d4e473cd3f59fd776cc0631b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page