Skip to content

belajarbikinaplikasi/pentools2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API CREATOR SIMPLE

How to Use

$ git clone https://github.com/derymukti/pentools2.git
$ cd pentools
$ sudo pip install -r requrements.txt

Config

Update config in config.json

Basic CLI

Create new module

$ python manage.py create:module -n users

Run App

$ python manage.py run

Basic api

Create New User

[POST] http://localhost:8383/users/insert_something

{
	"username":"pentools",
	"password":"1234",
	"email":"test@email.com"
}

Get Users

[GET] http://localhost:8383/users/list_something

Update User

[POST] http://localhost:8383/users/update_something

{
	"id":"1",
	"username":"updateuser",
	"password":"updatepassword",
	"email":"update@email.com"
}

About

New Simple API creator with JWT Token

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%