django-file-upload


Namedjango-file-upload JSON
Version 1.1.6 PyPI version JSON
download
home_pagehttps://github.com/django-xxx/django-file-upload
SummaryDjango File Upload
upload_time2023-02-06 09:12:28
maintainer
docs_urlNone
authorHackathon
requires_python
license
keywords django file upload
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-file-upload
Django File Upload

## Installation
```shell
pip install django-file-upload
```

## Urls.py
```python
from django.urls import include, re_path

urlpatterns = [
    re_path(r'^f/', include('django_file_upload.urls', namespace='django_file_upload')),
]
```
or
```python
from django.urls import re_path
from django_file_upload import views as file_views

urlpatterns = [
    re_path(r'^upload$', file_views.file_upload, name='file_upload'),
]
```

## Settings.py
```python
INSTALLED_APPS = (
    ...
    'django_file_upload',
    ...
)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/django-xxx/django-file-upload",
    "name": "django-file-upload",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Django File Upload",
    "author": "Hackathon",
    "author_email": "kimi.huang@brightcells.com",
    "download_url": "https://files.pythonhosted.org/packages/de/87/1585998e717f7f86da87ac106d2e188eaa925dcc60e5e3e1021184f3c67f/django-file-upload-1.1.6.tar.gz",
    "platform": null,
    "description": "# django-file-upload\nDjango File Upload\n\n## Installation\n```shell\npip install django-file-upload\n```\n\n## Urls.py\n```python\nfrom django.urls import include, re_path\n\nurlpatterns = [\n    re_path(r'^f/', include('django_file_upload.urls', namespace='django_file_upload')),\n]\n```\nor\n```python\nfrom django.urls import re_path\nfrom django_file_upload import views as file_views\n\nurlpatterns = [\n    re_path(r'^upload$', file_views.file_upload, name='file_upload'),\n]\n```\n\n## Settings.py\n```python\nINSTALLED_APPS = (\n    ...\n    'django_file_upload',\n    ...\n)\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Django File Upload",
    "version": "1.1.6",
    "split_keywords": [
        "django",
        "file",
        "upload"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc12c2e4697435a19d17511ec296e9fb0edc82c3e323e0f3220e26c5eeb453a5",
                "md5": "8958003df269907cd7721c172b7c25f0",
                "sha256": "b945801ab86a373944fbc7c799cc4daa79dddcbcf6ced0ba69de7d245870ca44"
            },
            "downloads": -1,
            "filename": "django_file_upload-1.1.6-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8958003df269907cd7721c172b7c25f0",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 3966,
            "upload_time": "2023-02-06T09:12:26",
            "upload_time_iso_8601": "2023-02-06T09:12:26.647983Z",
            "url": "https://files.pythonhosted.org/packages/dc/12/c2e4697435a19d17511ec296e9fb0edc82c3e323e0f3220e26c5eeb453a5/django_file_upload-1.1.6-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de871585998e717f7f86da87ac106d2e188eaa925dcc60e5e3e1021184f3c67f",
                "md5": "847840eca498b9a7791416b740c3b3fd",
                "sha256": "294b1dcfbfbe4c06ad3a7e696dd9e9dc40715fdbac33c8105f4faccb5f41aabe"
            },
            "downloads": -1,
            "filename": "django-file-upload-1.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "847840eca498b9a7791416b740c3b3fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3107,
            "upload_time": "2023-02-06T09:12:28",
            "upload_time_iso_8601": "2023-02-06T09:12:28.523009Z",
            "url": "https://files.pythonhosted.org/packages/de/87/1585998e717f7f86da87ac106d2e188eaa925dcc60e5e3e1021184f3c67f/django-file-upload-1.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-06 09:12:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "django-xxx",
    "github_project": "django-file-upload",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "django-file-upload"
}
        
Elapsed time: 0.04212s