this post was submitted on 17 Jul 2021
2 points (100.0% liked)

Django Web Framework

41 readers
7 users here now

This is a community dedicated to the Django Web Framework for Python.

Useful links:

Rules:

Community icon from vscode-django, licensed under the MIT license

founded 4 years ago
MODERATORS
 

A few months ago, I built a tool to generate fake data based on a JSON payload(fakeapi). FakeAPI worked fine, but a major downside was that a JSON payload must be sent as a post request to receive data. This is not good for someone emulating any other HTTP methods.

So I decided to build Phoney. Phoney is a mock API generator that lets you create apps to manage endpoints. Other features of phoney include,

  • Create apps to manage your endpoints
  • Create endpoints that return data in a custom format
  • Default API key authentication support
  • All methods, GET, POST, PUT, and DELETE, supported.
  • Dynamic endpoints supported
  • Swagger UI for each endpoint. It makes testing easy.
  • Built-in JSON editor for creating endpoint schema
  • Supported response codes, 200, 201, and 202
  • Syntax highlighting for JSON schema
  • Light/Dark theme switch

This is my first ever Django app

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here