{"id":23289472,"url":"https://github.com/amikrop/django-paste","last_synced_at":"2025-08-21T20:33:54.864Z","repository":{"id":57421189,"uuid":"310583739","full_name":"amikrop/django-paste","owner":"amikrop","description":"Pluggable, configurable, pastebin HTTP REST API","archived":false,"fork":false,"pushed_at":"2024-02-27T15:13:02.000Z","size":54,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-27T23:31:15.360Z","etag":null,"topics":["django","django-rest-framework","pastebin","pygments","python","python3","rest-api"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/django-paste/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amikrop.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-06T11:51:39.000Z","updated_at":"2024-03-18T10:49:09.000Z","dependencies_parsed_at":"2024-11-28T00:46:18.520Z","dependency_job_id":null,"html_url":"https://github.com/amikrop/django-paste","commit_stats":{"total_commits":24,"total_committers":1,"mean_commits":24.0,"dds":0.0,"last_synced_commit":"109f6e5a42bdc20f3cb671471b3ce5c9e329148b"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amikrop%2Fdjango-paste","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amikrop%2Fdjango-paste/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amikrop%2Fdjango-paste/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amikrop%2Fdjango-paste/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amikrop","download_url":"https://codeload.github.com/amikrop/django-paste/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230532442,"owners_count":18240793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-rest-framework","pastebin","pygments","python","python3","rest-api"],"created_at":"2024-12-20T04:15:49.594Z","updated_at":"2024-12-20T04:15:50.247Z","avatar_url":"https://github.com/amikrop.png","language":"Python","readme":"django-paste\n============\n\nPluggable, configurable, pastebin HTTP REST API\n-----------------------------------------------\n\n.. image:: https://img.shields.io/pypi/v/django-paste.svg\n   :target: https://pypi.org/project/django-paste/\n   :alt: PyPI\n\n.. image:: https://img.shields.io/pypi/l/django-paste.svg\n   :target: https://pypi.org/project/django-paste/\n   :alt: PyPI - License\n\n.. image:: https://img.shields.io/pypi/pyversions/django-paste.svg\n   :target: https://pypi.org/project/django-paste/\n   :alt: PyPI - Python Version\n\n.. image:: https://codecov.io/gh/amikrop/django-paste/branch/master/graph/\n           badge.svg\n    :target: https://codecov.io/gh/amikrop/django-paste/\n    :alt: Coverage\n\n.. image:: https://readthedocs.org/projects/django-paste/badge/?version=latest\n   :target: https://django-paste.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n*django-paste* is a simple `Django \u003chttps://www.djangoproject.com/\u003e`_\npluggable app of a code pasting and highlighting HTTP REST API, written using\n`Django REST framework \u003chttps://www.django-rest-framework.org/\u003e`_. It supports\nthe `CRUD \u003chttps://en.wikipedia.org/wiki/Create,_read,_update_and_delete\u003e`_\noperations on source code snippets and uses any existing user authentication\nsystem. Syntax highlighting is powered by `Pygments\n\u003chttps://pygments.org/\u003e`_.\n\nInstallation\n------------\n\nThe following Python versions are supported:\n\n    - CPython: 3.6, 3.7, 3.8, 3.9\n    - PyPy: 3.6\n\nDjango:\n\n    - 2.0, 2.1, 2.2\n    - 3.0, 3.1\n\n- Install via `pip\n  \u003chttps://packaging.python.org/tutorials/installing-packages/\u003e`_:\n\n  .. code-block:: bash\n\n     $ pip install django-paste\n\n- Add it to your ``INSTALLED_APPS``:\n\n  .. code-block:: python\n\n     INSTALLED_APPS = [\n         # ...\n         'paste.apps.PasteConfig',\n     ]\n\n- Register the app's URLs under a path of your choice:\n\n  .. code-block:: python\n\n     urlpatterns = [\n         # ...\n         path('some-path/', include('paste.urls')),\n     ]\n\n  where ``'some-path/'`` could be any URL.\n\n- Optionally, configure the app `settings\n  \u003chttps://django-paste.readthedocs.io/en/latest/settings.html\u003e`_.\n\n- Generate and run the database migrations:\n\n  .. code-block:: bash\n\n     $ python manage.py makemigrations paste\n     $ python manage.py migrate\n\nUsage\n-----\n\nYou can find the description of the app's `endpoints\n\u003chttps://django-paste.readthedocs.io/en/latest/api.html#endpoints\u003e`_ and\nsnippet `fields \u003chttps://django-paste.readthedocs.io/en/latest/fields.html\u003e`_\nin the `documentation \u003chttps://django-paste.readthedocs.io/en/latest/\u003e`_. You\ncan also manage snippets at the Django admin site.\n\nLicense\n-------\n\nDistributed under the `MIT License\n\u003chttps://github.com/amikrop/django-paste/blob/master/LICENSE\u003e`_.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famikrop%2Fdjango-paste","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famikrop%2Fdjango-paste","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famikrop%2Fdjango-paste/lists"}