Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vk/eureka-requests


https://github.com/vk/eureka-requests

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# Eureka Requests

Use eureka to find all possible endpoints and then make requests until it works
starting with the best locations

## Install
```
pip install eureka_requests
```

## Usage
```python
import eureka_requests

dbApi = eureka_requests.RequestsApi(
"DB-SERVE",
_eureka_url,
_db_token,
)

dbApi.post("/testdb",
json = {"query": "SELECT * FROM USERS"}
)
```