{"id":25714230,"url":"https://github.com/reim-developer/kiew","last_synced_at":"2026-03-12T13:40:54.990Z","repository":{"id":277971768,"uuid":"934024450","full_name":"Reim-developer/kiew","owner":"Reim-developer","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-08T16:15:20.000Z","size":257,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T21:14:57.215Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Reim-developer.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-17T06:31:26.000Z","updated_at":"2025-03-08T16:15:25.000Z","dependencies_parsed_at":"2025-02-17T10:22:55.899Z","dependency_job_id":"75503a33-ccd7-4c2d-bd4a-e5a13b056682","html_url":"https://github.com/Reim-developer/kiew","commit_stats":null,"previous_names":["reim-developer/kiew"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reim-developer%2Fkiew","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reim-developer%2Fkiew/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reim-developer%2Fkiew/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reim-developer%2Fkiew/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Reim-developer","download_url":"https://codeload.github.com/Reim-developer/kiew/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251872374,"owners_count":21657633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-25T12:36:19.823Z","updated_at":"2026-03-12T13:40:49.965Z","avatar_url":"https://github.com/Reim-developer.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kiew. A Rust Command Line Tool for Website Scraping\n\n**This project is licensed under the [MIT LICENSE](LICENSE)**\n\n## Table of contents\n- [Features](#features)\n- [Quick Start](#quick-start)\n- [Build Requirements](#build-requirements)\n\n## Features\n**API Testing:**\n- Support `PUT` `POST` `DELETE` `GET` request\n- Customize header\n- Customize payload with JSON format\n- Support logging system\n- Friendly, with `progress bar`, `color_highlight`, `time benchmark`\n\n    ![Preview](preview/3.png)\n\n**Web Scraping:**\n* Update Soon\n\n## Quick Start:\n### Installation:\n#### Source installation:\n\u003e **Note: Please read our requirements to build at [Build Requirements](#build-requirements)**\n\n```bash\ngit clone https://github.com/Reim-developer/kiew.git\ncd kiew\ncargo build --release --verbose\ncd target/release/ \u0026\u0026 kiew --help\n```\n\n- Binary Installation:\n- Install at [release page](https://github.com/Reim-developer/kiew/releases)\n\n### Build Requirements:\n- `Git ≥ 2.39.5`\n- `Rustup ≥ 1.27.1`\n- `Rustc ≥ 1.84.1`\n- `Cargo ≥ 1.84.1`\n\n### Sample:\n\n#### API TEST:\n**`POST` method**\n```bash\nkiew post -w \"https://httpbin.org/post\" -H \"User-Agent: KiewCLI\" -H \"Accept: application/json\" -P '{\"user\":{\"id\":12345,\"name\":\"Nguyen Van A\",\"email\":\"nguyenvana@example.com\",\"age\":30},\"order\":{\"order_id\":\"ABC123XYZ\",\"items\":[{\"product\":\"Laptop Dell XPS 13\",\"price\":1500.99,\"quantity\":1},{\"product\":\"Mouse Logitech MX Master\",\"price\":99.50,\"quantity\":2}],\"total\":1699.99,\"status\":\"pending\"},\"timestamp\":\"2025-03-01T12:34:56Z\",\"metadata\":{\"source\":\"web\",\"campaign\":\"spring_sale_2025\"}}'\n```\n\n**`PUT` method**\n```bash\nkiew put -w \"https://httpbin.org/put\" -H \"User-Agent: KiewCLI\" -H \"Accept: application/json\" -P '{\"user\":{\"id\":12345,\"name\":\"Nguyen Van A\",\"email\":\"nguyenvana@example.com\",\"age\":30},\"order\":{\"order_id\":\"ABC123XYZ\",\"items\":[{\"product\":\"Laptop Dell XPS 13\",\"price\":1500.99,\"quantity\":1},{\"product\":\"Mouse Logitech MX Master\",\"price\":99.50,\"quantity\":2}],\"total\":1699.99,\"status\":\"pending\"},\"timestamp\":\"2025-03-01T12:34:56Z\",\"metadata\":{\"source\":\"web\",\"campaign\":\"spring_sale_2025\"}}'\n```\n\n**`DELETE` method**\n```bash\nkiew delete -w \"https://httpbin.org/put\" -H \"User-Agent: KiewCLI\" -H \"Accept: application/json\" -P '{\"user\":{\"id\":12345,\"name\":\"Nguyen Van A\",\"email\":\"nguyenvana@example.com\",\"age\":30},\"order\":{\"order_id\":\"ABC123XYZ\",\"items\":[{\"product\":\"Laptop Dell XPS 13\",\"price\":1500.99,\"quantity\":1},{\"product\":\"Mouse Logitech MX Master\",\"price\":99.50,\"quantity\":2}],\"total\":1699.99,\"status\":\"pending\"},\"timestamp\":\"2025-03-01T12:34:56Z\",\"metadata\":{\"source\":\"web\",\"campaign\":\"spring_sale_2025\"}}'\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freim-developer%2Fkiew","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freim-developer%2Fkiew","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freim-developer%2Fkiew/lists"}