emptygif
اللغة: العربية

كل اللغات وأطر العمل

Django Python

مقتطف بلغة Python لـ Django يستجيب لطلبات /pixel.gif بملف GIF الفارغ، الذي يُفك ترميزه مرة واحدة عند بدء التشغيل.

Django Python

التثبيت
pip install django
الملف
views.py
التشغيل
python manage.py runserver 8080
# pixels/views.py
import base64

from django.http import HttpResponse
from django.views.decorators.http import require_GET

GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")


@require_GET
def pixel(request):
    return HttpResponse(GIF, content_type="image/gif", headers={"Cache-Control": "no-store"})


# pixels/urls.py  (include("pixels.urls") from the project's urls.py)
from django.urls import path

from . import views

urlpatterns = [
    # Django URL patterns are written without the leading slash.
    path("/pixel.gif".lstrip("/"), views.pixel, name="pixel"),
]

شغّلنا هذا المقتطف وقارنّا البايتات التي أعادها.

التحقق

curl -sI http://localhost:8080/pixel.gif

الموقع الرسمي: Django

المزيد بلغة Python