Skip to main content
🐍⚡️Support Python for everyone by grabbing a 30% discount on PyCharm—ALL proceeds go to the Python Software Foundation. Offer ends soon, so grab it today!  GET 30% OFF PYCHARM

Link integrity support for guillotina

Project description

Guillotina link integrity

Travis CI Test Coverage Python Versions PyPi License

The package aims to provide link integrity support for Guillotina.

Features:

  • Ability to check for linked content
  • Automatically redirect requests when content is renamed or moved
  • Manage aliases to content
  • Translate resolveuid urls in text

Dependencies

  • Python >= 3.6
  • Guillotina
  • PG/Cockroachdb

Installation

This example will use virtualenv:

  python -m venv .
  ./bin/pip install .[test]

Running

Running Postgresql Server:

docker run --rm -e POSTGRES_DB=guillotina -e POSTGRES_USER=guillotina -p 127.0.0.1:5432:5432 --name postgres postgres:9.6

Most simple way to get running:

./bin/guillotina

API

The package provides some high level APIs for interacting with content.

Working with linked content:

import guillotina_linkintegrity as li

await li.get_links(ob)
await li.add_links(ob, [ob2, ob3])
await li.remove_links(ob, [ob2, ob3])
await li.update_links_from_html(ob, content)

How about aliases:

import guillotina_linkintegrity as li

await li.get_aliases(ob)
await li.add_aliases(ob, ['/foo/bar'])
await li.remove_aliases(ob, ['/foo/bar'])

# what about aliases from parents that might affect it?
await li.get_inherited_aliases(ob)

Translate uid linked content:

import guillotina_linkintegrity as li

result = await li.translate_links(content)

1.0.1 (2018-09-26)

  • Fix imports to match docs [vangheem]

1.0.0 (2018-09-25)

  • initial release

Supported by

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