gitextract_b1h8jdvd/ ├── .env-example ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app/ │ ├── [lang]/ │ │ ├── (home)/ │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── api/ │ │ │ └── search/ │ │ │ └── route.ts │ │ ├── docs/ │ │ │ ├── [[...slug]]/ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── raw/ │ │ │ └── [...slug]/ │ │ │ └── route.ts │ │ ├── global.css │ │ ├── layout.tsx │ │ └── llms.mdx/ │ │ └── [[...slug]]/ │ │ └── route.ts │ ├── layout.config.tsx │ └── llms-full.txt/ │ └── route.ts ├── components/ │ ├── ai/ │ │ └── page-actions.tsx │ ├── banner.tsx │ ├── feedback.tsx │ ├── footer.tsx │ └── mdx/ │ └── mermaid.tsx ├── content/ │ └── docs/ │ ├── math/ │ │ ├── index.mdx │ │ └── meta.json │ ├── meta.json │ └── python/ │ ├── index.mdx │ ├── matplotlib/ │ │ └── index.mdx │ ├── meta.json │ ├── numpy/ │ │ └── index.mdx │ ├── pandas/ │ │ └── index.mdx │ ├── python/ │ │ ├── control-flow.mdx │ │ ├── data-structures.mdx │ │ ├── data-types.mdx │ │ ├── error-handling.mdx │ │ ├── file-handling.mdx │ │ ├── functions.mdx │ │ ├── hello-world.mdx │ │ ├── index.mdx │ │ ├── meta.json │ │ ├── oop.mdx │ │ └── operators.mdx │ ├── scikit-learn/ │ │ └── index.mdx │ └── setup.mdx ├── lib/ │ ├── cn.ts │ ├── get-llm-text.ts │ ├── github.ts │ ├── i18n.ts │ ├── metadata.ts │ └── source.ts ├── mdx-components.tsx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── proxy.ts ├── source.config.ts ├── tsconfig.json └── utils/ └── process-markdown-links.ts