Metadata-Version: 2.1
Name: django-agent
Version: 1.0.0
Summary: A Django app that provides an API for executing shell commands and retrieving their output
Author-email: sysproxy <sysproxy64@gmail.com>
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Django Agent


This is a Django app that provides an API for executing shell commands and retrieving their output.

## Quick start

*  Add **django_agent** to your **INSTALLED_APPS** setting like this
```
INSTALLED_APPS = [
    ...,
    "django_agent",
]
```
* Include the  **django_agent** URLconf in your project **urls.py** like this
```
path("agent/", include("django_agent.urls")),
```
   


* Add **AGENT_TOKEN**  to your project **settings.py** like this
```
...
AGENT_TOKEN="my-agent-token"
```
