django-hashtag


Namedjango-hashtag JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/DLRSP/django-hashtag
SummaryDjango application provide hashtag functionality.
upload_time2024-01-02 23:05:10
maintainer
docs_urlNone
authorDLRSP
requires_python>=3.8
licenseMIT License
keywords django hashtag taggit
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-hashtag [![PyPi license](https://img.shields.io/pypi/l/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)

[![PyPi status](https://img.shields.io/pypi/status/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)
[![PyPi version](https://img.shields.io/pypi/v/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)
[![PyPi python version](https://img.shields.io/pypi/pyversions/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)
[![PyPi downloads](https://img.shields.io/pypi/dm/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)
[![PyPi downloads](https://img.shields.io/pypi/dw/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)
[![PyPi downloads](https://img.shields.io/pypi/dd/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)

## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-hashtag.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-hashtag.svg)

## Test [![codecov.io](https://codecov.io/github/DLRSP/django-hashtag/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-hashtag?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-hashtag/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-hashtag/main) [![gitthub.com](https://github.com/DLRSP/django-hashtag/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-hashtag/actions/workflows/ci.yaml)

## Check Demo Project
* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-hashtag)

## Requirements
-   Python 3.8+ supported.
-   Django 3.2+ supported.

## Setup
1. Install from **pip**:
```shell
pip install django-hashtag
```

2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
    # ...
    "taggit",
    "hashtag",
    # ...
]
```

3. Execute Django's command `migrate` inside your project's root:
```sheel
python manage.py migrate
Running migrations:
  Applying hashtag.0001_initial... OK
  Applying hashtag.0002_alter_mytag_slug... OK
  Applying hashtag.0003_alter_mytag_last_used... OK
```

## Run Example Project

```shell
git clone --depth=50 --branch=django-hashtag https://github.com/DLRSP/example.git DLRSP/example
cd DLRSP/example
python manage.py runserver
```

Now browser the app @ http://127.0.0.1:8000

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DLRSP/django-hashtag",
    "name": "django-hashtag",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "django, hashtag, taggit",
    "author": "DLRSP",
    "author_email": "dlrsp.dev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b6/8b/1d54f7cc49a8a1a8dedaabe587ab078661c8049dc2ae955aad9c81a4dcd9/django-hashtag-0.2.1.tar.gz",
    "platform": null,
    "description": "# django-hashtag [![PyPi license](https://img.shields.io/pypi/l/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n\n[![PyPi status](https://img.shields.io/pypi/status/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n[![PyPi version](https://img.shields.io/pypi/v/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-hashtag.svg)](https://pypi.python.org/pypi/django-hashtag)\n\n## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-hashtag.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-hashtag.svg)\n\n## Test [![codecov.io](https://codecov.io/github/DLRSP/django-hashtag/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-hashtag?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-hashtag/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-hashtag/main) [![gitthub.com](https://github.com/DLRSP/django-hashtag/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-hashtag/actions/workflows/ci.yaml)\n\n## Check Demo Project\n* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-hashtag)\n\n## Requirements\n-   Python 3.8+ supported.\n-   Django 3.2+ supported.\n\n## Setup\n1. Install from **pip**:\n```shell\npip install django-hashtag\n```\n\n2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:\n```python\nINSTALLED_APPS = [\n    # ...\n    \"taggit\",\n    \"hashtag\",\n    # ...\n]\n```\n\n3. Execute Django's command `migrate` inside your project's root:\n```sheel\npython manage.py migrate\nRunning migrations:\n  Applying hashtag.0001_initial... OK\n  Applying hashtag.0002_alter_mytag_slug... OK\n  Applying hashtag.0003_alter_mytag_last_used... OK\n```\n\n## Run Example Project\n\n```shell\ngit clone --depth=50 --branch=django-hashtag https://github.com/DLRSP/example.git DLRSP/example\ncd DLRSP/example\npython manage.py runserver\n```\n\nNow browser the app @ http://127.0.0.1:8000\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Django application provide hashtag functionality.",
    "version": "0.2.1",
    "project_urls": {
        "Homepage": "https://github.com/DLRSP/django-hashtag"
    },
    "split_keywords": [
        "django",
        " hashtag",
        " taggit"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943ff5544e30fb69e894adad9b0a813707e059f4100b263dc26d01427ddbf4f4",
                "md5": "41bb06fb4fcdd6a22fe98cc02375ef60",
                "sha256": "d1301bee6bb502cdbcc3ca6751249e177ad5c5bd34b5e13ed0162ae789b036a1"
            },
            "downloads": -1,
            "filename": "django_hashtag-0.2.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "41bb06fb4fcdd6a22fe98cc02375ef60",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 9248,
            "upload_time": "2024-01-02T23:05:09",
            "upload_time_iso_8601": "2024-01-02T23:05:09.658948Z",
            "url": "https://files.pythonhosted.org/packages/94/3f/f5544e30fb69e894adad9b0a813707e059f4100b263dc26d01427ddbf4f4/django_hashtag-0.2.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b68b1d54f7cc49a8a1a8dedaabe587ab078661c8049dc2ae955aad9c81a4dcd9",
                "md5": "715e718fd1abcafcd779a6f4a15c9d77",
                "sha256": "7cdc77ea330fecc9c93f013d8cdbf6719d9490afb4b5c3c16a94c84edbc48eb5"
            },
            "downloads": -1,
            "filename": "django-hashtag-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "715e718fd1abcafcd779a6f4a15c9d77",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 117412,
            "upload_time": "2024-01-02T23:05:10",
            "upload_time_iso_8601": "2024-01-02T23:05:10.702014Z",
            "url": "https://files.pythonhosted.org/packages/b6/8b/1d54f7cc49a8a1a8dedaabe587ab078661c8049dc2ae955aad9c81a4dcd9/django-hashtag-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-02 23:05:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DLRSP",
    "github_project": "django-hashtag",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-hashtag"
}
        
Elapsed time: 0.15350s