https://github.com/ttytm/vibe
Vibe is a request library for V. It utilizes a libcurl binding to enable fast and reliable requests while providing a higher-level API.
https://github.com/ttytm/vibe
cross-platform curl http libcurl libcurl-bindings linux macos osx proxy requests v vlang vlang-library windows
Last synced: about 1 month ago
JSON representation
Vibe is a request library for V. It utilizes a libcurl binding to enable fast and reliable requests while providing a higher-level API.
- Host: GitHub
- URL: https://github.com/ttytm/vibe
- Owner: ttytm
- License: mit
- Created: 2023-06-08T16:17:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T23:11:50.000Z (6 months ago)
- Last Synced: 2025-04-06T06:02:11.680Z (about 1 month ago)
- Topics: cross-platform, curl, http, libcurl, libcurl-bindings, linux, macos, osx, proxy, requests, v, vlang, vlang-library, windows
- Language: V
- Homepage: https://ttytm.github.io/vibe/
- Size: 155 KB
- Stars: 34
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-v - vibe - Request library that wraps libcurl to enable fast and reliable requests while providing a higher-level API. (Libraries / Networking)
README
# [](https://github.com/ttytm/vibe)
Vibe is a request library that wraps libcurl to enable fast and reliable requests while providing a
higher-level API.## Installation
- Install via V's cli
```sh
v install https://github.com/ttytm/vibe
```- Setup development dependency
```sh
v ~/.vmodules/vibe/curl/setup.vsh
```## Usage
> [!IMPORTANT]
> On Windows, use gcc to compile your V program
>
> ```sh
> v -cc gcc your_awesome_program.v
> ```### Examples
#### GET request
```v
import vibe// Default request
resp := vibe.get('https://hacker-news.firebaseio.com/v0/item/1.json')!
println(resp.body)// Custom request
request := vibe.Request{
headers: {
.user_agent: 'YourCustomUserAgent/v0.0.1'
}
}
resp2 := request.get('https://hacker-news.firebaseio.com/v0/item/1.json')!
println(resp2.body)
```[`get_test`](https://github.com/ttytm/vibe/blob/main/src/_tests_get_test.v)
#### POST request
```v
import vibe
import timereq := vibe.Request{
headers: {
.user_agent: 'YourCustomUserAgent/v0.0.1'
.content_type: 'application/json; charset=utf-8'
}
timeout: time.second * 10
}resp := req.post('https://httpbin.org/post', '{"msg":"hello from vibe"}')!
println(resp)
```[`post_test`](https://github.com/ttytm/vibe/blob/main/src/_tests_post_test.v)
#### Download
```v
import vibevibe.download_file('https://github.com/vlang/v/releases/download/weekly.2023.23/v_linux.zip',
'v_linux.zip')!
```[`download_file_test`](https://github.com/ttytm/vibe/blob/main/src/_tests_download_file_test.v)
More examples
#### GET Slice request
If optimizing speed is of concern when querying pages with large response bodies, and you know you
only need a portion of them, you can perform a `get_slice` request.```v oksyntax
// Sends a GET request to the specified `url` and returns a slice of the response content.
// Allocation of the received response as a vstring is postponed until the `start` byte position is reached.
// The content is returned as soon as the slice reaches its `max_size` (offset from `start`)
// - `max_size` can be `none` to return the remainder from the start.
pub fn (req Request) get_slice(url string, start usize, max_size ?usize) !Response
``````v
import vibe
import net.htmlresp := vibe.get_slice('https://docs.vosca.dev/advanced-concepts/v-and-c.html', 65_000,
10_000)!
selector := html.parse(resp.body).get_tags_by_class_name('language-vmod')[0]
println(selector.text())
```[`get_slice_test`](https://github.com/ttytm/vibe/blob/main/src/_tests_get_slice_test.v)
#### Download with progress
```v oksyntax
// Downloads a document from the specified `url` and saves it to the specified `file_path`.
// `download` must implement a `progress(pos usize, size usize)`, and a `finish()` method.
pub fn (req Request) download_file_with_progress(url string, file_path string, download Download) !Response
``````v
import vibe
import os// User-defined struct that implements the `Download` interface.
struct MyStruct {
foo string
bar string
}fn (dl MyStruct) progress(pos u64, size u64) {
print('\rDownloading... ${f64(pos) / size * 100:.2f}%')
os.flush()
}fn (dl MyStruct) finish() {
println('\nDownload completed.')
}mut download := MyStruct{}
vibe.download_file_with_progress('https://github.com/vlang/v/releases/download/weekly.2023.23/v_linux.zip',
'v_linux.zip', mut download)!
```#### Persistent Cookie
Share cookies between requests / sessions with a curl cookie jar file.
The demo below does not provide real authentication data, for a "full" use-case scenario,
change the payload data and requested URLs to actual addresses that require authentication.```v
import vibe
import oscookie_jar := './demo_cookie'
req := vibe.Request{
headers: {
.content_type: 'application/json; charset=utf-8'
}
cookie_jar: cookie_jar
}// Login and save cookies to curl cookie file.
req.post('https://api.yourdomain.com/v1/login', '{"username":"yourname","password":"password"}')!// Use the `cookie_file` in subsequent sessions to access endpoints that require the authentication above.
req2 := vibe.Request{
headers: {
.content_type: 'application/json; charset=utf-8'
}
cookie_file: cookie_jar
}resp := req2.get('https://api.yourdomain.com/v1/protected_page')!
// ... use resp// Remove the cookie file or keep it for later usage.
os.rm(cookie_jar)!
```## Further information and upcoming features
Additional features will be added based on personal projects and sensible community needs.
Contributions like bug 🐛 reports, ⭐ stars and 💡 suggestions are welcome alike!### Planned
- [x] Linux, macOS, Windows
- [x] Download with progress
- [x] Custom headers
- [x] Proxy supportGiven that the project is being worked on in limited spare time, please excuse potential delays in
replying.