Metadata-Version: 2.1
Name: django-execute-code
Version: 0.1
Summary: django execute code for Django 2.*
Home-page: https://github.com/shinunandakumar/django_execute_code
Author: Shinu
Author-email: shinunandakumar@gmail.com
License: MIT
Keywords: django execute code
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE.txt

Django execute code
===============
This is a project that is used to execute python codes in the web page.
You can install and use it in django projects,
You can do any operations that can be performed in python shell with this package.
  

Installing
============

.. code-block:: bash

    pip install django-execute-code

Usage
=====
    Register the django_execute_code's urls in your django project's root url conf
.. code-block:: bash

    urlpatterns += [
        url('_debug_/', django_execute_code.urls),
    ]

;
    Then login as super user and go to this url `http://<your_site_url>/_debug_/execute-python/`

Contributing
=====
    If you think you've found a bug or are interested in contributing to this project check out `django-ad-code on Github. <https://github.com/shinunandakumar/django_execute_code>`_.


