Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toghrulmirzayev/lynx-flow
https://github.com/toghrulmirzayev/lynx-flow
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/toghrulmirzayev/lynx-flow
- Owner: ToghrulMirzayev
- License: mit
- Created: 2023-11-25T18:21:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-25T21:45:44.000Z (about 1 year ago)
- Last Synced: 2024-10-12T14:14:27.976Z (3 months ago)
- Language: Python
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lynx Flow
Lynx Flow is a streamlined and straightforward API requests library for building method call sequences.
Simplify your code with clear and concise constructs using Lynx Flow.![Lynx Flow logo](https://toghrulmirzayev.github.io/lynx-flow/lynx-flow.png)
# Getting started
* Install lynx-flow
```commandline
pip install lynx-flow
```* Import Lynx class to start
```python
from lynx_flow.lynx import Lynx
```* Build your request in single, clear and readable flow
```python
Lynx().get().with_url(URL).with_headers(HEADERS).where().json().tobe().equal("The service is up and running")
```