python-dxh


Namepython-dxh JSON
Version 1.2.2 PyPI version JSON
download
home_pagehttps://github.com/git-foysal-1/python-dxh.git
SummaryA Python package for developments.
upload_time2024-06-23 13:46:27
maintainerNone
docs_urlNone
authorDevXhub
requires_python>=3.9
licenseMIT
keywords python object
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![build](https://img.shields.io/github/workflow/status/iamfoysal/py-app-store/Build)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/iamfoysal/py-app-store/pulls)
[![PyPI](https://img.shields.io/pypi/v/python-app-store-scraper)](https://pypi.org/project/python-app-store-scraper/)
![downloads](https://img.shields.io/pypi/dm/python-app-store-scraper)
![license](https://img.shields.io/pypi/l/python-app-store-scraper)
![code style](https://img.shields.io/badge/code%20style-black-black)

`python-dxh` is a Python package designed to integrate with AWS services and Anticaptcha in Django projects. This package simplifies the configuration and usage of `AWS S3`, `AWS Textract`, and `Anticaptcha` by centralizing credential management in your Django settings.

## Installation

To install the `python-dxh` package, use pip:

```sh
pip install python-dxh
```
## Configuration

After installing the package, add AWS and Anticaptcha credentials to the Django project's settings.py file. This ensures that the necessary credentials are available for the package to interact with the services

## AWS S3 Configuration
Add the following variables to your settings.py file:
```python
DJANGO_AWS_S3_REGION_NAME = '<your-aws-s3-region-name>'
DJANGO_AWS_ACCESS_KEY_ID = '<your-aws-access-key-id>'
DJANGO_AWS_SECRET_ACCESS_KEY = '<your-aws-secret-access-key>'
DJANGO_AWS_STORAGE_BUCKET_NAME = '<your-aws-storage-bucket-name>'
DJANGO_AWS_TEXTRACT_REGION_NAME = '<your-aws-textract-region-name>'
```

## Anticaptcha Configuration
Add the following variable to your `settings.py` file:

```python
ANTICAPTCHA_API_KEY = '<your-anticaptcha-api-key>'
```

## Usage
Once the settings are configured, the package can be used in the Django project as follows:
    
```python   
from python_dxh.aws.s3_client import S3Client
from python_dxh.aws.textract import textract_handler
from python_dxh.anticaptcha.captcha import AntiCaptchaSolver
```
```python
from python_dxh.s3_client import S3Client

# Initialize the S3 client
s3_client = S3Client()

# Upload a file to S3
s3_client.upload_to_s3('path/to/local/file', 's3/object/name')

# Delete an object from S3
s3_client.delete_from_s3(object_key='s3/object/name')
```

## Auditlog Configuration
To enable audit logging, include auditlog in INSTALLED_APPS and configure the AuditActorMiddleware.

Add auditlog to INSTALLED_APPS in settings.py:

```
INSTALLED_APPS = [
    ...
    'auditlog',
    ...
]
```

Add AuditActorMiddleware to MIDDLEWARE in settings.py:

```python
MIDDLEWARE = [
    ...
    'python_dxh.middleware.AuditActorMiddleware',
    ...
]
``` 

## Websocket Configuration

This middleware for JWT authentication in WebSocket connections.

Checks the 'authorization' header for a JWT token, retrieves the corresponding user,
and adds the user to the connection scope.

If the token is invalid or not provided, sets the user to AnonymousUser.

```python
from python_dxh.middleware import JwtAuthMiddleware


'websocket': JwtAuthMiddleware(
        AuthMiddlewareStack(
            URLRouter(websocket_urlpatterns)
        )
    )
``` 


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/git-foysal-1/python-dxh.git",
    "name": "python-dxh",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "python, object",
    "author": "DevXhub",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/e0/58/69796fe1bd256942f4520b3e7b0934aa3962786074a5197a8f5caf182d28/python-dxh-1.2.2.tar.gz",
    "platform": null,
    "description": "![build](https://img.shields.io/github/workflow/status/iamfoysal/py-app-store/Build)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/iamfoysal/py-app-store/pulls)\n[![PyPI](https://img.shields.io/pypi/v/python-app-store-scraper)](https://pypi.org/project/python-app-store-scraper/)\n![downloads](https://img.shields.io/pypi/dm/python-app-store-scraper)\n![license](https://img.shields.io/pypi/l/python-app-store-scraper)\n![code style](https://img.shields.io/badge/code%20style-black-black)\n\n`python-dxh` is a Python package designed to integrate with AWS services and Anticaptcha in Django projects. This package simplifies the configuration and usage of `AWS S3`, `AWS Textract`, and `Anticaptcha` by centralizing credential management in your Django settings.\n\n## Installation\n\nTo install the `python-dxh` package, use pip:\n\n```sh\npip install python-dxh\n```\n## Configuration\n\nAfter installing the package, add AWS and Anticaptcha credentials to the Django project's settings.py file. This ensures that the necessary credentials are available for the package to interact with the services\n\n## AWS S3 Configuration\nAdd the following variables to your settings.py file:\n```python\nDJANGO_AWS_S3_REGION_NAME = '<your-aws-s3-region-name>'\nDJANGO_AWS_ACCESS_KEY_ID = '<your-aws-access-key-id>'\nDJANGO_AWS_SECRET_ACCESS_KEY = '<your-aws-secret-access-key>'\nDJANGO_AWS_STORAGE_BUCKET_NAME = '<your-aws-storage-bucket-name>'\nDJANGO_AWS_TEXTRACT_REGION_NAME = '<your-aws-textract-region-name>'\n```\n\n## Anticaptcha Configuration\nAdd the following variable to your `settings.py` file:\n\n```python\nANTICAPTCHA_API_KEY = '<your-anticaptcha-api-key>'\n```\n\n## Usage\nOnce the settings are configured, the package can be used in the Django project as follows:\n    \n```python   \nfrom python_dxh.aws.s3_client import S3Client\nfrom python_dxh.aws.textract import textract_handler\nfrom python_dxh.anticaptcha.captcha import AntiCaptchaSolver\n```\n```python\nfrom python_dxh.s3_client import S3Client\n\n# Initialize the S3 client\ns3_client = S3Client()\n\n# Upload a file to S3\ns3_client.upload_to_s3('path/to/local/file', 's3/object/name')\n\n# Delete an object from S3\ns3_client.delete_from_s3(object_key='s3/object/name')\n```\n\n## Auditlog Configuration\nTo enable audit logging, include auditlog in INSTALLED_APPS and configure the AuditActorMiddleware.\n\nAdd auditlog to INSTALLED_APPS in settings.py:\n\n```\nINSTALLED_APPS = [\n    ...\n    'auditlog',\n    ...\n]\n```\n\nAdd AuditActorMiddleware to MIDDLEWARE in settings.py:\n\n```python\nMIDDLEWARE = [\n    ...\n    'python_dxh.middleware.AuditActorMiddleware',\n    ...\n]\n``` \n\n## Websocket Configuration\n\nThis middleware for JWT authentication in WebSocket connections.\n\nChecks the 'authorization' header for a JWT token, retrieves the corresponding user,\nand adds the user to the connection scope.\n\nIf the token is invalid or not provided, sets the user to AnonymousUser.\n\n```python\nfrom python_dxh.middleware import JwtAuthMiddleware\n\n\n'websocket': JwtAuthMiddleware(\n        AuthMiddlewareStack(\n            URLRouter(websocket_urlpatterns)\n        )\n    )\n``` \n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python package for developments.",
    "version": "1.2.2",
    "project_urls": {
        "Homepage": "https://github.com/git-foysal-1/python-dxh.git",
        "Source": "https://github.com/git-foysal-1/python-dxh.git"
    },
    "split_keywords": [
        "python",
        " object"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e05869796fe1bd256942f4520b3e7b0934aa3962786074a5197a8f5caf182d28",
                "md5": "d0e596c9e8561c27060002d585b7d254",
                "sha256": "1d6a6b69024def65c7f88c24d0a868c57958ee968a30d3dbc93f4e3317b83f2f"
            },
            "downloads": -1,
            "filename": "python-dxh-1.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d0e596c9e8561c27060002d585b7d254",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 9665,
            "upload_time": "2024-06-23T13:46:27",
            "upload_time_iso_8601": "2024-06-23T13:46:27.094534Z",
            "url": "https://files.pythonhosted.org/packages/e0/58/69796fe1bd256942f4520b3e7b0934aa3962786074a5197a8f5caf182d28/python-dxh-1.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-23 13:46:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "git-foysal-1",
    "github_project": "python-dxh",
    "github_not_found": true,
    "lcname": "python-dxh"
}
        
Elapsed time: 0.27248s