{"id":15099173,"url":"https://github.com/marcuwynu23/feyfetch","last_synced_at":"2026-01-07T06:10:10.293Z","repository":{"id":231057693,"uuid":"780790063","full_name":"marcuwynu23/feyfetch","owner":"marcuwynu23","description":"command-line automated testing tool for REST API routes, inspired by the enchanting realm of fey creatures","archived":false,"fork":false,"pushed_at":"2024-04-04T11:28:16.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-01T19:46:13.967Z","etag":null,"topics":["api","cmd","commandline","curl","http","httpie","python","requests","rest","rest-api"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcuwynu23.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-04-02T06:57:53.000Z","updated_at":"2024-04-02T07:00:21.000Z","dependencies_parsed_at":"2024-04-04T12:43:35.023Z","dependency_job_id":null,"html_url":"https://github.com/marcuwynu23/feyfetch","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"1a5d27e9a8b6add1bf78c9780f4523af1cc1660c"},"previous_names":["marcuwynu23/feyfetch"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcuwynu23%2Ffeyfetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcuwynu23%2Ffeyfetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcuwynu23%2Ffeyfetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcuwynu23%2Ffeyfetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcuwynu23","download_url":"https://codeload.github.com/marcuwynu23/feyfetch/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245878929,"owners_count":20687297,"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":["api","cmd","commandline","curl","http","httpie","python","requests","rest","rest-api"],"created_at":"2024-09-25T17:07:00.464Z","updated_at":"2026-01-07T06:10:10.276Z","avatar_url":"https://github.com/marcuwynu23.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# FeyFetch\n\n[![GitHub license](https://img.shields.io/github/license/marcuwynu23/feyfetch)](https://github.com/marcuwynu23/feyfetch/blob/main/LICENSE)\n[![GitHub stars](https://img.shields.io/github/stars/marcuwynu23/feyfetch)](https://github.com/marcuwynu23/feyfetch/stargazers)\n[![GitHub issues](https://img.shields.io/github/issues/marcuwynu23/feyfetch)](https://github.com/marcuwynu23/feyfetch/issues)\n\n\u003c/div\u003e\n\nFeyFetch is an automated testing tool crafted for efficient testing of REST API routes. It simplifies the process of testing API endpoints, ensuring reliability and performance with ease.\n\n## Features\n\n- **Automated Testing**: FeyFetch automates the testing of REST API routes, reducing manual effort and ensuring consistent testing procedures.\n- **Configurable Headers**: Easily configure common headers to be included in all API requests for uniformity and ease of management.\n- **Flexible Request Handling**: Support for various HTTP methods (GET, POST, PUT, DELETE, etc.) and optional request bodies allows for comprehensive testing of API endpoints.\n- **Directory-Based Organization**: FeyFetch reads API requests from a specified directory, enabling easy organization and management of test cases.\n- **Whimsical Charm**: With its playful name and mystical inspiration, FeyFetch adds a touch of whimsy to your testing endeavors.\n\n## Installation\n\nTo install FeyFetch, simply clone this repository:\n\n```bash\ngit clone https://github.com/marcuwynu23/feyfetch.git\n```\n\n## Usage\n\n1. Create a `requests.json`or any name for your requests file in your `requests` directory with the following structure:\n\n```json\n{\n  \"name\": \"Application API Requests\",\n  \"root\": \"http://localhost:9000/api\",\n  \"headers\": {\n    \"Content-Type\": \"application/json\"\n  },\n  \"routes\": [\n    {\n      \"path\": \"/auth/login\",\n      \"method\": \"GET\"\n    },\n    {\n      \"path\": \"/auth/login\",\n      \"method\": \"POST\",\n      \"body\": {\n        \"email\": \"admin@admin.com\",\n        \"password\": \"admin\"\n      }\n    },\n    {\n      \"path\": \"/auth/register\",\n      \"method\": \"POST\",\n      \"body\": {\n        \"email\": \"admin@admin.com\",\n        \"password\": \"admin\",\n        \"role\": \"admin\"\n      }\n    },\n    {\n      \"path\": \"/auth/recovery\",\n      \"method\": \"POST\",\n      \"body\": {\n        \"email\": \"admin@admin.com\"\n      }\n    },\n    {\n      \"path\": \"/auth/reset\",\n      \"method\": \"POST\",\n      \"body\": {\n        \"email\": \"admin@admin.com\",\n        \"password\": \"admin\",\n        \"token\": \"123\"\n      }\n    },\n    {\n      \"path\": \"/auth/logout\",\n      \"method\": \"GET\"\n    },\n    {\n      \"path\": \"/users\",\n      \"method\": \"GET\"\n    }\n  ]\n}\n```\n\n2. Run FeyFetch by executing the main script and providing the path to the directory containing your requests configuration file:\n\n```bash\nfey \u003cfilename\u003e\n```\n\n3. FeyFetch will automate the testing of your API routes based on the requests defined in request json file for example `requests.json` inside the requests folder, providing insights into the functionality and performance of your endpoints.\n\n## Contributing\n\nContributions are welcome! Feel free to submit bug reports, feature requests, or pull requests to help improve FeyFetch and make it even more magical.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcuwynu23%2Ffeyfetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcuwynu23%2Ffeyfetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcuwynu23%2Ffeyfetch/lists"}