Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vk/eureka-requests
https://github.com/vk/eureka-requests
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/vk/eureka-requests
- Owner: VK
- Created: 2022-09-19T08:27:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T06:20:29.000Z (over 2 years ago)
- Last Synced: 2024-12-18T16:19:01.744Z (about 1 month ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_requestsdbApi = eureka_requests.RequestsApi(
"DB-SERVE",
_eureka_url,
_db_token,
)dbApi.post("/testdb",
json = {"query": "SELECT * FROM USERS"}
)
```