gitextract_i4lmlmqj/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── python-publish.yml │ ├── stale-issues.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── autoscraper/ │ ├── __init__.py │ ├── auto_scraper.py │ └── utils.py ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── integration/ │ ├── __init__.py │ ├── test_complex_features.py │ └── test_real_world.py └── unit/ ├── __init__.py ├── test_additional_features.py ├── test_build.py └── test_features.py