Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ingran/linkero
Restful API for external requests
https://github.com/ingran/linkero
framework python-2 python-3 rest-api restful-api web-services
Last synced: 27 days ago
JSON representation
Restful API for external requests
- Host: GitHub
- URL: https://github.com/ingran/linkero
- Owner: ingran
- License: lgpl-3.0
- Created: 2016-10-10T09:24:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T20:25:56.000Z (over 1 year ago)
- Last Synced: 2024-10-13T09:41:36.180Z (about 1 month ago)
- Topics: framework, python-2, python-3, rest-api, restful-api, web-services
- Language: Python
- Size: 102 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Linkero
[![PyPI](https://img.shields.io/pypi/v/linkero.svg)](https://pypi.python.org/pypi/linkero)
[![PyPI](https://img.shields.io/pypi/pyversions/linkero.svg)](https://pypi.python.org/pypi/linkero)
[![PyPI](https://img.shields.io/pypi/l/linkero.svg)](https://github.com/ingran/linkero/blob/master/LICENSE)
[![Pypy](https://img.shields.io/badge/PyPy-3.5-ff69b4.svg)](https://pypy.org/)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2b63ba733fed4213b97361f0593d3a3b)](https://www.codacy.com/app/RDCH106/linkero?utm_source=github.com&utm_medium=referral&utm_content=ingran/linkero&utm_campaign=Badge_Grade)
[![Build Status](https://travis-ci.org/ingran/linkero.svg?branch=master)](https://travis-ci.org/ingran/linkero)Framework focused in Restful API development for external requests powered by [Ingran Engineering](https://web.archive.org/web/20181203153543/https://ingran.es/) under [LGPL-3.0](https://github.com/RDCH106/linkero/blob/master/LICENSE) license.
Linkero is compatible with Python-2 and Python-3.
### What can I do with Linkero?
- Run REST API server
- Mount your Python developments or wrappers as API REST service. Only spend time developing your APIs behaviour.
- Add new APIs easily to already existing gateway development.
- Generate Public APIs.
- Generate Private APIs.
- Security using user and password authentication.
- Security using token.
- Grant privileges to desired APIs or only a group of calls of API to specific users.
- User accounts persistence using SQLite DB.
- Integration with other WSGI (Web Server Gateway Interface):
- [Gevent](https://github.com/gevent/gevent)
- [Waitress](https://github.com/Pylons/waitress)### Installation
You can install or upgrade linkero with:
`$ pip install linkero --upgrade`
Or you can install from source with:
```
$ git clone https://github.com/ingran/linkero.git --recursive
$ cd linkero
$ pip install .
```### **Documentation**
More information available in the **[WIKI](https://github.com/ingran/linkero/wiki/home)**.
### **Contribution**
Check the **[Contributing](https://github.com/ingran/linkero/blob/master/CONTRIBUTING.md)** guide.