# djangoFeignClient **Repository Path**: zhsjch/djangoFeignClient ## Basic Information - **Project Name**: djangoFeignClient - **Description**: No description available - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-07 - **Last Updated**: 2021-11-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # djangoFeignClient ### install ```python pip install djangoFeignClient ``` ### example ```python from feign_client.feignClient import FeignClient class EurekaTest(unittest.TestCase): def test_eureka_user_login(self): data = { 'username': 'admin', 'password': '123456' } # eureka_server address host = '127.0.0.1:8081' # eureka app name app_name = 'test_app' # http request method method = 'POST' # request path path = '/user/login' res = FeignClient(eureka_server = host, method = method, path = path, app_name = app_name, data = dict(data)).result print(res) ```