Skip to main content

Pluggable, configurable, pastebin HTTP REST API

Project description

Pluggable, configurable, pastebin HTTP REST API

PyPI PyPI - License PyPI - Python Version Coverage Build Status Documentation Status

django-paste is a simple Django pluggable app of a code pasting and highlighting HTTP REST API, written using Django REST framework. It supports the CRUD operations on source code snippets and uses any existing user authentication system. Syntax highlighting is powered by Pygments.

Installation

The following Python versions are supported:

  • CPython: 3.6, 3.7, 3.8, 3.9

  • PyPy: 3.6

Django:

  • 2.0, 2.1, 2.2

  • 3.0, 3.1

  • Install via pip:

    $ pip install django-paste
  • Add it to your INSTALLED_APPS:

    INSTALLED_APPS = [
        # ...
        'paste.apps.PasteConfig',
    ]
  • Register the app’s URLs under a path of your choice:

    urlpatterns = [
        # ...
        path('some-path/', include('paste.urls')),
    ]

    where 'some-path/' could be any URL.

  • Optionally, configure the app settings.

  • Generate and run the database migrations:

    $ python manage.py makemigrations paste
    $ python manage.py migrate

Usage

You can find the description of the app’s endpoints and snippet fields in the documentation. You can also manage snippets at the Django admin site.

License

Distributed under the MIT License.

Download files

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

Source Distribution

django-paste-1.1.1.tar.gz (16.7 kB view hashes)

Uploaded Source

Built Distribution

django_paste-1.1.1-py3-none-any.whl (8.6 kB view hashes)

Uploaded Python 3

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