rand_user_agent

Crates.iorand_user_agent
lib.rsrand_user_agent
version0.2.1
sourcesrc
created_at2023-04-28 06:33:04.901814
updated_at2024-09-10 07:18:27.123247
descriptionRandomly generate common userAgents,used by spider
homepage
repositoryhttps://github.com/xyanyue/rand_user_agent.git
max_upload_size
id851184
size36,304
xjn (xyanyue)

documentation

README

This is a program that randomly generates UserAgents.

这是一个随机生成UserAgent的程序

Data From . 数据整理自

whatmyuseragent.com

user-agents.net

useragentstring.com

Quick Start

println!("{}", UserAgent::random().to_string());

Mobile and computer designated.手机电脑指定

// Random mobile agent. [随机手机端agent]
println!("Mobile:{}", UserAgent::mobile().to_string());
// Random Desktop agent.随机PC端
println!("Pc:{}", UserAgent::pc().to_string());

Fully customizable.完全自定义

BrowserDevicesDesktopDeviceMobileDevice impl rand::distributions::Standard

println!(
    "custom Mobile Iphone Chrome:{}",
    UserAgent::custom(Devices::Mobile(MobileDevice::Iphone), Browser::Chrome)
);
//first
println!(
    "custom Desktop Windows random browser :{}",
    UserAgent::custom(Devices::Desktop(DesktopDevice::Windows), rand::random())
);
//two
let mut rng = rand::thread_rng();
println!(
    "custom random Mobile & random browser :{}",
    UserAgent::custom(Devices::Mobile(rand::random()), Browser::random(&mut rng))
);

Todo

  • create Sec-CH-UA
Commit count: 13

cargo fmt