Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theradioguy/proxify
Shitty proxy parser for rust
https://github.com/theradioguy/proxify
Last synced: 14 days ago
JSON representation
Shitty proxy parser for rust
- Host: GitHub
- URL: https://github.com/theradioguy/proxify
- Owner: TheRadioGuy
- Created: 2020-06-06T10:48:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-06T10:34:58.000Z (over 4 years ago)
- Last Synced: 2024-12-10T00:55:10.668Z (about 1 month ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Proxify
A pretty shitty proxy parser for Rust### How to use?
Put proxify in your dependency section:
```toml
proxify = "0.3"
```Use it:
```rust
let proxy = proxify::get_proxy().await;
println!("{:?}", proxy);
```Also, you can check proxies, duration is time for waiting before we close the connection:
```rust
use std::time::Duration;
let working = check_proxies(&proxy, Duration::from_secs(2)).await;
println!("{:?}", working);
```