http-scrap 0.1.112

A brief description of your package
Documentation

HTTP-SCRAPE

License Crates.io

A brief description of your crate, explaining what it does and its main features.

Table of Contents

Features

  • Feature 1
  • Feature 2
  • Feature 3

Installation

To include this crate in your project, add the following line to your Cargo.toml:

[dependencies]
http-scrape = "0.1.0"  <!-- Replace with your crate name and version -->
main.rs
use http-scrap;

fn main() {
    let response = Response::new("");
    response.method(); // GET | POST | DELETE | PUT | OPTIONS
    response.path();
    response.cookie(); 
    response.content();
}