{"id":28564948,"url":"https://github.com/dharshan-kumarj/pingstream","last_synced_at":"2026-04-11T14:32:37.192Z","repository":{"id":287678482,"uuid":"965472941","full_name":"dharshan-kumarj/Pingstream","owner":"dharshan-kumarj","description":"Pingstream is a lightweight, Streamlit-based API testing tool using curl under the hood. Designed for low-RAM systems, it supports GET, POST, PUT, DELETE with JSON, headers, file uploads, and Postman/OpenAPI import.","archived":false,"fork":false,"pushed_at":"2025-06-03T14:01:55.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-04T00:01:06.284Z","etag":null,"topics":["api-testing-tool","curl","developer-tools","json","lightweight","linux-tools","low-memory","openapi","postman-alternative","productivity","python","python3","rest-api","streamlit"],"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/dharshan-kumarj.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,"zenodo":null}},"created_at":"2025-04-13T08:41:23.000Z","updated_at":"2025-06-03T14:01:56.000Z","dependencies_parsed_at":"2025-06-04T00:01:09.440Z","dependency_job_id":"8317d3cc-5bf4-4ace-8335-67e17a0d07f0","html_url":"https://github.com/dharshan-kumarj/Pingstream","commit_stats":null,"previous_names":["dharshan-kumarj/api_tool","dharshan-kumarj/pingstream"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharshan-kumarj%2FPingstream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharshan-kumarj%2FPingstream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharshan-kumarj%2FPingstream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharshan-kumarj%2FPingstream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dharshan-kumarj","download_url":"https://codeload.github.com/dharshan-kumarj/Pingstream/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dharshan-kumarj%2FPingstream/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259088492,"owners_count":22803645,"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-testing-tool","curl","developer-tools","json","lightweight","linux-tools","low-memory","openapi","postman-alternative","productivity","python","python3","rest-api","streamlit"],"created_at":"2025-06-10T14:01:14.505Z","updated_at":"2025-12-30T22:40:01.570Z","avatar_url":"https://github.com/dharshan-kumarj.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Pingstream — The Lightweight API Tester\n\n**Pingstream** is a minimalist, memory-efficient GUI tool for testing REST APIs. Built using Python, Streamlit, and `curl`, it’s perfect for developers working in low-resource environments (like 4GB RAM machines) where heavy tools like Postman just don't cut it.\n\n---\n\n## 🔧 Features\n\n* ⚡ **Lightweight** – Ideal for systems with limited RAM\n* 🔄 **Core HTTP Methods** – GET, POST, PUT, DELETE\n* 🧱 **Request Builder** – Build complete API calls with ease\n* 🧩 **Header Manager** – Add, edit, and remove custom headers\n* 🧮 **Query Parameter Support** – Clean interface for managing query params\n* 📦 **JSON Body Editor** – Includes automatic JSON validation\n* 📁 **File Upload** – Send files with your API requests\n* 🕓 **Request History** – View your recent API calls\n* 🌀 **Curl-based Engine** – Reliable, fast request handling\n* 📤 **Import/Export** – Supports Postman collections and OpenAPI JSON files\n\n---\n\n## 📥 Installation\n\n### ✅ Prerequisites\n\n* Python 3.7+\n* `pip`\n* `curl` (should be installed and accessible in your system PATH)\n\n### 🛠 Setup\n\n```bash\n# Clone or download this repo\ngit clone https://github.com/yourusername/pingstream.git\ncd pingstream\n\n# Install dependencies\npip install streamlit\n\n# Run the app\nstreamlit run pingstream.py\n```\n\n---\n\n## 🚀 Usage Guide\n\n### 🔹 Make a Request\n\n1. Select HTTP method (GET, POST, etc.)\n2. Enter the API URL\n3. Click \"Send Request\"\n\n### 🔹 Manage Headers\n\n* Go to the \"Headers\" tab\n* Add key-value pairs\n* Click \"Add Header\" as needed\n\n### 🔹 Add Query Params\n\n* Go to the \"Params\" tab\n* Add key-value pairs\n* Click \"Add Parameter\"\n\n### 🔹 Send JSON Body\n\n* Go to the \"Body\" tab\n* Choose “raw JSON”\n* Paste your JSON (automatic validation included)\n\n### 🔹 Upload Files\n\n* Go to the \"Files\" tab\n* Use the uploader to include your file in the request\n\n### 🔹 Import/Export\n\n* Import API definitions from Postman or OpenAPI JSON\n* Export your requests for reuse or sharing\n\n---\n\n## 🧰 Troubleshooting\n\n### ⚠ ScriptRunContext Warnings\n\nIf you see warnings like `missing ScriptRunContext`, you can suppress them with:\n\n```bash\nstreamlit run pingstream.py --logger.level=error\n```\n\nOr create a config file:\n\n```toml\n# .streamlit/config.toml\n[logger]\nlevel = \"error\"\n```\n\n### ❌ Request Errors\n\n* Confirm `curl` is installed: `curl --version`\n* Check your internet and API endpoint\n* Validate your JSON structure\n\n---\n\n## 🧾 Requirements\n\n* Python 3.7+\n* Streamlit\n* curl\n\n---\n\n\n## 👨‍💻 Created By\n\n**Pingstream** was developed by [@dharshan-kumarj](https://github.com/dharshan-kumarj) on April 13, 2025, with love for developers using low-end machines.\n\n**UI Enhancements by** [@ronnie-allen](https://github.com/ronnie-allen) — improving the design and experience of the Streamlit interface.\n\n\u003e 💡 Built on Linux, powered by `curl`, and designed to work even when your RAM says “no”.\n\n---\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdharshan-kumarj%2Fpingstream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdharshan-kumarj%2Fpingstream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdharshan-kumarj%2Fpingstream/lists"}