gmarmstrong / postget

Python library for building, and repository of, web API wrappers represented as PostGet submodules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostGet

Warning: This project is still early in development.

About PostGet

PostGet is a Python library for building web API wrappers which developers can import as PostGet submodules.

With PostGet

import requests
from lib import libplug
from plugins import example

plug = example.Plugin()
plug.post_keyval({"key": "val"})

Without PostGet

import requests

def post_keyval(dict):
    request.get("https://example.org" + "/post", dict)

post_keyval({"key": "val"})

Development and maintenance of PostGet

See CONTRIBUTING.md for information on PostGet development.

About

Python library for building, and repository of, web API wrappers represented as PostGet submodules

License:GNU Affero General Public License v3.0


Languages

Language:Python 100.0%