django.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "django",
  3. "description": "Django web framework for Python. Use for Django models, views, templates, ORM, authentication, and web development.",
  4. "base_url": "https://docs.djangoproject.com/en/stable/",
  5. "start_urls": [
  6. "https://docs.djangoproject.com/en/stable/intro/",
  7. "https://docs.djangoproject.com/en/stable/topics/db/models/",
  8. "https://docs.djangoproject.com/en/stable/topics/http/views/",
  9. "https://docs.djangoproject.com/en/stable/topics/templates/",
  10. "https://docs.djangoproject.com/en/stable/topics/forms/",
  11. "https://docs.djangoproject.com/en/stable/topics/auth/",
  12. "https://docs.djangoproject.com/en/stable/ref/models/"
  13. ],
  14. "selectors": {
  15. "main_content": "article",
  16. "title": "h1",
  17. "code_blocks": "pre"
  18. },
  19. "url_patterns": {
  20. "include": ["/intro/", "/topics/", "/ref/", "/howto/"],
  21. "exclude": ["/faq/", "/misc/", "/releases/"]
  22. },
  23. "categories": {
  24. "getting_started": ["intro", "tutorial", "install"],
  25. "models": ["models", "database", "orm", "queries"],
  26. "views": ["views", "urlconf", "routing"],
  27. "templates": ["templates", "template"],
  28. "forms": ["forms", "form"],
  29. "authentication": ["auth", "authentication", "user"],
  30. "api": ["ref", "reference"]
  31. },
  32. "rate_limit": 0.3,
  33. "max_pages": 500
  34. }