Metadata-Version: 2.1
Name: django-check-seo
Version: 0.0.3
Summary: Django Check SEO will check the SEO aspects of your site for you, and will provide advice in case of problems.
Home-page: https://github.com/kapt-labs/django-check-seo
Author: Dev Kapt
Author-email: dev@kapt.mobi
License: UNKNOWN
Description: ![Django Check SEO](https://user-images.githubusercontent.com/45763865/69130297-8def1800-0ab0-11ea-8e3f-973e0f97a080.png)
        
        Replacing some features of Yoast or SEMrush for django CMS users.
        
        In other words, django-check-seo will tell you if you have problems concerning a broad range of SEO aspects of your pages.
        
        ----
        
        ## Install
        
        #### With pipenv
        
         * Add this package to your Pipfile below `[packages]`, then run `pipenv install`:
        
          ```
          django-check-seo = { git = 'https://github.com/kapt-labs/django-check-seo.git' }
          ```
        
         * *Or add it using this command:*
        
          ```
          pipenv install -e git+https://github.com/kapt-labs/django-check-seo.git#egg=django-check-seo
          ```
        
        **and then**
        
         * add `django-check-seo.apps.DjangoCheckSEOConfig` to your `INSTALLED_APPS`,
         * add `url(r"^django-check-seo/", include("django-check-seo.urls")),` to your `urlpatterns` in `urls.py` (before `url(r'^', include('cms.urls')),` or it will not work),
           * or `path("django-check-seo/", include("django-check-seo.urls")),` if you're using path,
         * update [site](https://i.imgur.com/pNRsKs7.png) parameters with correct url (*[example](https://i.imgur.com/IedF3xE.png)* for dev environment)
        
        *Start your django CMS project, log in, you should see the "Check SEO..." button and everything should be okay.*
        
        #### Without pipenv
        
        *coming soon* 📝
        
        ----
        
        ## Prerequisites
        
        You will need `beautifulsoup4`, `requests`, `djangocms` & `djangocms_page_meta` in order to made this application work.
        
        ----
        
        ## Want a screenshot?
        
        ![screenshot](https://user-images.githubusercontent.com/45763865/69637530-180f2180-1059-11ea-9d90-53ecf3b6c53b.png)
        
        *Other screenshots and videos are available on the [wiki](https://github.com/kapt-labs/django-check-seo/wiki/Medias).*
        
        ----
        
        ## Interested in finding out more?
        
        Take a look at the [wiki](https://github.com/kapt-labs/django-check-seo/wiki/):
        
         * [List & explanations of all checks](https://github.com/kapt-labs/django-check-seo/wiki/Description-of-the-checks)
         * [How to add a check?](https://github.com/kapt-labs/django-check-seo/wiki/How-to-add-a-check%3F)
         * ...
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
