{"id":35038240,"url":"https://github.com/ramusus/django-social-hashtags","last_synced_at":"2026-05-24T14:34:04.782Z","repository":{"id":136904466,"uuid":"62891715","full_name":"ramusus/django-social-hashtags","owner":"ramusus","description":"Django applications for hashtags of posts in social networks","archived":false,"fork":false,"pushed_at":"2016-07-13T09:39:43.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-28T21:59:30.474Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ramusus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-07-08T13:44:43.000Z","updated_at":"2016-10-26T19:15:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"eb53a2ca-71e4-4e0e-b195-af64259a2c6f","html_url":"https://github.com/ramusus/django-social-hashtags","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ramusus/django-social-hashtags","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramusus%2Fdjango-social-hashtags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramusus%2Fdjango-social-hashtags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramusus%2Fdjango-social-hashtags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramusus%2Fdjango-social-hashtags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ramusus","download_url":"https://codeload.github.com/ramusus/django-social-hashtags/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramusus%2Fdjango-social-hashtags/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33438514,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T13:13:05.286Z","status":"ssl_error","status_checked_at":"2026-05-24T13:13:03.728Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-12-27T08:04:53.512Z","updated_at":"2026-05-24T14:34:04.776Z","avatar_url":"https://github.com/ramusus.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Django Social Hashtags App\n==========================\nThis app allow you to parse hashtags from text and adds its to any model instance. For managing tags app uses django-taggit model manager.\n\nIntallation\n-----------\n```bash\n# pip install git+https://github.com/ramusus/django-social-hashtags\n```\nAdd into `settings.py` lines:\n```python\n    INSTALLED_APPS = [\n        ...\n        'taggit',\n        'social_hashtags.apps.DjangoSocialHashtagsConfig',\n    ]\n    \n    # Optional django-social-hashtags settings (here default values)\n    # Pluggable apps and models for django-taggit manager\n    SOCIAL_HASHTAGS_PLUGGABLE_APPS = (  # (('app_label', 'app_model'), ... )\n        ('vkonakte_wall', 'Post'),\n        ('facebook_posts', 'Post'),\n        ('odnoklassniki_discussions', 'Discussion'),\n        ('instagram_api', 'Media'),\n        ('twitter_api', 'Status'),\n    )\n    # django-taggit manager name\n    SOCIAL_HASHTAGS_TAGS_MANAGER_NAME = 'hashtags'\n```\n\nUsage examples\n--------------\nFor tags manager API see [django-taggit docs](https://django-taggit.readthedocs.io/en/latest/)\n\n```python\nfrom social_hashtags.api import parse_hashtags\nfrom social_hashtags.api import parse_hashtags_from_text\nfrom vkontakte_wall.models import Post\n\npost = Post.objects.create()\nparse_hashtags(post, u'text #HashTag1 #хеш_тег')\npost.hashtags.names()\n# [u'hashtag1', u'хеш_тег']\n\ntags = parse_hashtags_from_text(u'text #HashTag1 #хеш_тег', to_lower_case=False)\nlist(tags)\n[u'HashTag1', u'хеш_тег']\n```\n\nTests\n-----\nTo run the django-social-hashtags tests:\n\n* Download the [source from GitHub](https://github.com/ramusus/django-social-hashtags) or your fork.\n* Install tox\n    ```bash\n    # pip install tox\n    ```\n* Run tox\n    ```bash\n    $ tox\n    ```\nThis will run all the tests on all supported combinations of Django/Python.\n\n\nLicensing\n---------\nThis library uses the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).\nPlease see the library's individual files for more information.\n\n\nRelease notes\n-------------\nVersion 0.0.1\n* Initial release","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framusus%2Fdjango-social-hashtags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framusus%2Fdjango-social-hashtags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framusus%2Fdjango-social-hashtags/lists"}