mrapids 0.1.7

Your OpenAPI, but executable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "description": "My test gist created with MicroRapid",
  "public": true,
  "files": {
    "hello.py": {
      "content": "#!/usr/bin/env python3\n\ndef greet(name):\n    return f\"Hello, {name}!\"\n\nif __name__ == \"__main__\":\n    print(greet(\"MicroRapid\"))\n    print(\"This gist was created via API\")"
    },
    "README.md": {
      "content": "# Test Gist\n\nThis gist was created using MicroRapid API client.\n\n## Features\n- Easy API testing\n- OAuth support\n- Multiple file support\n\n## Usage\n```bash\npython hello.py\n```"
    },
    "config.json": {
      "content": "{\n  \"name\": \"test-gist\",\n  \"version\": \"1.0.0\",\n  \"created_with\": \"MicroRapid\"\n}"
    }
  }
}