16:11:23.961
404 GET
/robots.txt
73ms overall
0ms on queries
0 queries
Request Headers
X-FORWARDED-FOR 74.7.244.62
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
X-OPENAI-HOST-HASH 765949603
ACCEPT */*
FROM oai-searchbot(at)openai.com
USER-AGENT Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot
ACCEPT-ENCODING gzip, br, deflate
Response Headers
CONTENT-TYPE text/html; charset=utf-8
Raw Response Body
b'\n<!doctype html>\n<html lang="en">\n<head>\n  <title>Not Found</title>\n</head>\n<body>\n  <h1>Not Found</h1><p>The requested resource was not found on this server.</p>\n</body>\n</html>\n'
Curl
Curl is a command-line utility for transferring data from servers. Paste the following into a terminal to repeat this request via command line.
curl -X GET   https://x01-backend.mobischool.mw/robots.txt
Django Test Client
The following is working python code that makes use of the Django test client. It can be used to replicate this request from within a Django unit test, or simply as standalone Python.
from django.test import Client
c = Client()
response = c.get(path='/robots.txt')