conf.py — requests Source File
Architecture documentation for conf.py, a python file in the requests codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR d97856ac_fffa_78d6_c7ab_d7f13cadb13a["conf.py"] f748f9f7_0e4d_1e04_13aa_163d869167e7["sys"] d97856ac_fffa_78d6_c7ab_d7f13cadb13a --> f748f9f7_0e4d_1e04_13aa_163d869167e7 ee4485bf_7f24_0a4f_5207_2b9a2d911e29["os"] d97856ac_fffa_78d6_c7ab_d7f13cadb13a --> ee4485bf_7f24_0a4f_5207_2b9a2d911e29 ce06e854_c78b_b510_291a_dbc144a59aff["requests"] d97856ac_fffa_78d6_c7ab_d7f13cadb13a --> ce06e854_c78b_b510_291a_dbc144a59aff style d97856ac_fffa_78d6_c7ab_d7f13cadb13a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
# -*- coding: utf-8 -*-
#
# Requests documentation build configuration file, created by
# sphinx-quickstart on Fri Feb 19 00:05:47 2016.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys
import os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
# sys.path.insert(0, os.path.abspath('.'))
# Insert Requests' path into the system.
sys.path.insert(0, os.path.abspath(".."))
sys.path.insert(0, os.path.abspath("_themes"))
import requests
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = ".rst"
# The encoding of source files.
# source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = "index"
# General information about the project.
project = u"Requests"
// ... (327 more lines)
Dependencies
- os
- requests
- sys
Source
Frequently Asked Questions
What does conf.py do?
conf.py is a source file in the requests codebase, written in python.
What does conf.py depend on?
conf.py imports 3 module(s): os, requests, sys.
Where is conf.py in the architecture?
conf.py is located at docs/conf.py (directory: docs).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free