gitextract_fdy8vu0m/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── new_snippet.md │ │ └── translation.md │ ├── PULL_REQUEST_TEMPLATE/ │ │ ├── common.md │ │ ├── new_snippet.md │ │ └── translation.md │ └── workflows/ │ └── pr.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .travis.yml ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── code-of-conduct.md ├── irrelevant/ │ ├── insert_ids.py │ ├── notebook_generator.py │ ├── notebook_instructions.md │ ├── obsolete/ │ │ ├── add_categories │ │ ├── generate_contributions.py │ │ ├── initial.md │ │ └── parse_readme.py │ └── wtf.ipynb ├── mixed_tabs_and_spaces.py ├── noxfile.py ├── pyproject.toml ├── snippets/ │ ├── 2_tricky_strings.py │ └── __init__.py └── translations/ ├── fa-farsi/ │ └── README.md └── ru-russian/ ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── README.md └── code-of-conduct.md