gitextract_x0fjf4du/ ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .gracy/ │ └── pokeapi.sqlite3 ├── .pre-commit-config.yaml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── examples/ │ ├── httpbin_post.py │ ├── memory.py │ ├── pokeapi.py │ ├── pokeapi_limit_concurrency.py │ ├── pokeapi_namespaces.py │ ├── pokeapi_replay.py │ ├── pokeapi_replay_mongo.py │ ├── pokeapi_retry.py │ ├── pokeapi_throttle.py │ └── pokestarwarsapi.py ├── pyproject.toml ├── src/ │ ├── gracy/ │ │ ├── __init__.py │ │ ├── _configs.py │ │ ├── _core.py │ │ ├── _general.py │ │ ├── _loggers.py │ │ ├── _models.py │ │ ├── _paginator.py │ │ ├── _reports/ │ │ │ ├── _builders.py │ │ │ ├── _models.py │ │ │ └── _printers.py │ │ ├── _types.py │ │ ├── _validators.py │ │ ├── common_hooks.py │ │ ├── exceptions.py │ │ ├── py.typed │ │ └── replays/ │ │ ├── _wrappers.py │ │ └── storages/ │ │ ├── _base.py │ │ ├── _sqlite_schema.py │ │ ├── pymongo.py │ │ └── sqlite.py │ └── tests/ │ ├── conftest.py │ ├── generate_test_db.py │ ├── test_generators.py │ ├── test_gracy_httpx.py │ ├── test_hooks.py │ ├── test_loggers.py │ ├── test_namespaces.py │ ├── test_parsers.py │ ├── test_retry.py │ └── test_validators.py └── todo.md