Skip to main content

A Python package for developments.

Project description

build PRs Welcome PyPI downloads license code style

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:

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:

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:

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

Usage

Once the settings are configured, the package can be used in the Django project as follows:

from python_dxh.aws.s3_client import S3Client
from python_dxh.aws.textract import textract_handler
from python_dxh.anticaptcha.captcha import AntiCaptchaSolver
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:

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.

from python_dxh.middleware import JwtAuthMiddleware


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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-dxh-1.2.2.tar.gz (9.7 kB view details)

Uploaded Source

File details

Details for the file python-dxh-1.2.2.tar.gz.

File metadata

  • Download URL: python-dxh-1.2.2.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.12

File hashes

Hashes for python-dxh-1.2.2.tar.gz
Algorithm Hash digest
SHA256 1d6a6b69024def65c7f88c24d0a868c57958ee968a30d3dbc93f4e3317b83f2f
MD5 d0e596c9e8561c27060002d585b7d254
BLAKE2b-256 e05869796fe1bd256942f4520b3e7b0934aa3962786074a5197a8f5caf182d28

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page