https://github.com/dlrsp/django-hashtag
https://github.com/dlrsp/django-hashtag
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dlrsp/django-hashtag
- Owner: DLRSP
- License: mit
- Created: 2023-09-26T20:57:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T08:15:09.000Z (about 1 year ago)
- Last Synced: 2025-05-20T14:44:24.323Z (about 1 year ago)
- Language: Python
- Size: 398 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# django-hashtag [](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
[](https://pypi.python.org/pypi/django-hashtag)
## GitHub  
## Test [](https://codecov.io/github/DLRSP/django-hashtag?branch=main) [](https://results.pre-commit.ci/latest/github/DLRSP/django-hashtag/main) [](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