django-oci


Namedjango-oci JSON
Version 0.0.17 PyPI version JSON
download
home_pagehttps://github.com/vsoch/django-oci
SummaryOpen Containers distribution API for Django
upload_time2023-01-02 20:57:25
maintainer
docs_urlNone
authorVanessa Sochat
requires_python
licenseApache Software License 2.0
keywords django-oci
VCS
bugtrack_url
requirements djangorestframework django-ratelimit pyjwt requests
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-oci

[![PyPI version](https://badge.fury.io/py/django-oci.svg)](https://badge.fury.io/py/django-oci)
![docs/assets/img/django-oci.png](docs/assets/img/django-oci.png)

Open Containers distribution API for Django.

This repository serves a Django app that can be used to provide an opencontainers
distribution (OCI) endpoint to push and pull containers. An [example](tests)
application is provided in `tests` that can be interacted with here.


## Quickstart

Install django-oci::

```bash
pip install django-oci
```

Add it to your `INSTALLED_APPS` along with `rest_framework`

```python

    INSTALLED_APPS = (
        ...
        'django_oci',
        'rest_framework',
        ...
    )
```

Add django-oci's URL patterns:

```python

    from django_oci import urls as django_oci_urls
    urlpatterns = [
        ...
        url(r'^', include(django_oci.urls)),
        ...
    ]
```

See the [documentation](https://vsoch.github.io/django-oci/) or [getting started guide](https://vsoch.github.io/django-oci/docs/getting-started/) for more details about setup, and testing. An [example application](tests) is provided
and described in the getting started guide as well. The latest [conformance testing](https://vsoch.github.io/django-oci/conformance/) is provided as well.

## Many Thanks

* [cookiecutter-djangopackage](https://github.com/pydanny/cookiecutter-djangopackage)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vsoch/django-oci",
    "name": "django-oci",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "django-oci",
    "author": "Vanessa Sochat",
    "author_email": "vsochat@stanford.edu",
    "download_url": "https://files.pythonhosted.org/packages/9a/b4/f206726b40e1ec2a5f26b825c3881228deb3da8f8af3d8ac3fedc51a99d5/django-oci-0.0.17.tar.gz",
    "platform": null,
    "description": "# django-oci\n\n[![PyPI version](https://badge.fury.io/py/django-oci.svg)](https://badge.fury.io/py/django-oci)\n![docs/assets/img/django-oci.png](docs/assets/img/django-oci.png)\n\nOpen Containers distribution API for Django.\n\nThis repository serves a Django app that can be used to provide an opencontainers\ndistribution (OCI) endpoint to push and pull containers. An [example](tests)\napplication is provided in `tests` that can be interacted with here.\n\n\n## Quickstart\n\nInstall django-oci::\n\n```bash\npip install django-oci\n```\n\nAdd it to your `INSTALLED_APPS` along with `rest_framework`\n\n```python\n\n    INSTALLED_APPS = (\n        ...\n        'django_oci',\n        'rest_framework',\n        ...\n    )\n```\n\nAdd django-oci's URL patterns:\n\n```python\n\n    from django_oci import urls as django_oci_urls\n    urlpatterns = [\n        ...\n        url(r'^', include(django_oci.urls)),\n        ...\n    ]\n```\n\nSee the [documentation](https://vsoch.github.io/django-oci/) or [getting started guide](https://vsoch.github.io/django-oci/docs/getting-started/) for more details about setup, and testing. An [example application](tests) is provided\nand described in the getting started guide as well. The latest [conformance testing](https://vsoch.github.io/django-oci/conformance/) is provided as well.\n\n## Many Thanks\n\n* [cookiecutter-djangopackage](https://github.com/pydanny/cookiecutter-djangopackage)\n\n\n",
    "bugtrack_url": null,
    "license": "Apache Software License 2.0",
    "summary": "Open Containers distribution API for Django",
    "version": "0.0.17",
    "split_keywords": [
        "django-oci"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ab4f206726b40e1ec2a5f26b825c3881228deb3da8f8af3d8ac3fedc51a99d5",
                "md5": "5a5dad5d388e9bab5bec46eb15baac50",
                "sha256": "2148691d9f2f564e0a2f4e57cec5fb963b572d9ffd81a5a58263ba06f111cc9f"
            },
            "downloads": -1,
            "filename": "django-oci-0.0.17.tar.gz",
            "has_sig": false,
            "md5_digest": "5a5dad5d388e9bab5bec46eb15baac50",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 22862,
            "upload_time": "2023-01-02T20:57:25",
            "upload_time_iso_8601": "2023-01-02T20:57:25.502440Z",
            "url": "https://files.pythonhosted.org/packages/9a/b4/f206726b40e1ec2a5f26b825c3881228deb3da8f8af3d8ac3fedc51a99d5/django-oci-0.0.17.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-02 20:57:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "vsoch",
    "github_project": "django-oci",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "djangorestframework",
            "specs": []
        },
        {
            "name": "django-ratelimit",
            "specs": [
                [
                    "==",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "pyjwt",
            "specs": []
        },
        {
            "name": "requests",
            "specs": []
        }
    ],
    "lcname": "django-oci"
}
        
Elapsed time: 0.02343s