Skip to main content

Plugin to use OO to create routes in bottle.

Project description

Plugin que implementa criação de rotas com orientação a objetos.

[!NOTE] Este módulo não é exatamente um Plugin do bottle pois não é implementado como um, trata-se apenas de um "cheatzinho" que criei para simplificar um projeto meu. Para conferir como criar um plugin com bottle siga o link: https://bottlepy.org/docs/dev/plugindev.html

Plugin para micro-framework bottle para simplificar a criação de rotas utilizando Orientação a Objetos.

Para utilizar este plugin é necessário instalar o bottle. Pode ser o passo a passo da documentação: https://bottlepy.org/docs/0.12/tutorial.html#installation ou apenas com o comando abaixo:

pip install bottle

Depois pode instalar o plugin com o comando:

pip install BottleRoute

Esse plugin vai trazer o arquivo RouteExt para o seu site-package então você poderá utilizar da seguinte forma:

from bottle import Bottle
from RouteExt import set_controller_handler, Controllers


class TesteController(Controllers):
    url = "/"

    def get(self):
        return f"A url é: {self.url}"

app = set_controller_handler(Bottle)

app.register(obj=TesteController())

app.run()

Desta forma ele vai adicionar o método register a abstração do Bottle e vai poder ser invocado passando um objeto subclasse da classe Controller que implemente os verbos HTTP para URL. No exemplo acima são criados os verbos GET, POST, PUT e DELETE para a rota /, como não foi definido na classe TesteController() os métodos POST, PUT, DELETE, caso fossem requisitados retornáriam um erro informando Method not implemented.

Também é possível utilizar rotas dinamicas:

from bottle import Bottle
from RouteExt import set_controller_handler, Controllers


class TesteController(Controllers):
    url = "/<nome>"

    def get(self, nome):
        return f"O parametro na rota é:: {nome}"

app = set_controller_handler(Bottle)

app.register(obj=TesteController())

app.run()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

BottleRoutes-2020.8.20.tar.gz (2.6 kB view details)

Uploaded Source

File details

Details for the file BottleRoutes-2020.8.20.tar.gz.

File metadata

  • Download URL: BottleRoutes-2020.8.20.tar.gz
  • Upload date:
  • Size: 2.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2

File hashes

Hashes for BottleRoutes-2020.8.20.tar.gz
Algorithm Hash digest
SHA256 13140ded64af7b75001995d4bc92ea24545a63ee4165059b1c078e4f0273c88a
MD5 fdbf605c995901b7b56d7c80af69f35d
BLAKE2b-256 f0c17b262885d28d72488cbc65a6aaf07ab829c1201b41ce90efe4044416c126

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page