gitextract_san38b80/ ├── .codecov.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ └── workflows/ │ └── ci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── VERSION ├── _examples/ │ ├── README.md │ ├── basic/ │ │ └── basic.go │ ├── coursera_courses/ │ │ └── coursera_courses.go │ ├── cryptocoinmarketcap/ │ │ └── cryptocoinmarketcap.go │ ├── error_handling/ │ │ └── error_handling.go │ ├── factba.se/ │ │ └── factbase.go │ ├── google_groups/ │ │ └── google_groups.go │ ├── hackernews_comments/ │ │ └── hackernews_comments.go │ ├── instagram/ │ │ └── instagram.go │ ├── local_files/ │ │ ├── html/ │ │ │ ├── child_page/ │ │ │ │ ├── one.html │ │ │ │ ├── three.html │ │ │ │ └── two.html │ │ │ └── index.html │ │ └── local_files.go │ ├── login/ │ │ └── login.go │ ├── max_depth/ │ │ └── max_depth.go │ ├── multipart/ │ │ └── multipart.go │ ├── openedx_courses/ │ │ └── openedx_courses.go │ ├── parallel/ │ │ └── parallel.go │ ├── proxy_switcher/ │ │ └── proxy_switcher.go │ ├── queue/ │ │ └── queue.go │ ├── random_delay/ │ │ └── random_delay.go │ ├── rate_limit/ │ │ └── rate_limit.go │ ├── reddit/ │ │ └── reddit.go │ ├── request_context/ │ │ └── request_context.go │ ├── scraper_server/ │ │ └── scraper_server.go │ ├── shopify_sitemap/ │ │ └── shopify_sitemap.go │ ├── url_filter/ │ │ └── url_filter.go │ └── xkcd_store/ │ └── xkcd_store.go ├── cmd/ │ └── colly/ │ └── colly.go ├── colly.go ├── colly_test.go ├── context.go ├── context_test.go ├── debug/ │ ├── debug.go │ ├── logdebugger.go │ └── webdebugger.go ├── extensions/ │ ├── extensions.go │ ├── random_user_agent.go │ ├── referer.go │ └── url_length_filter.go ├── go.mod ├── go.sum ├── htmlelement.go ├── http_backend.go ├── http_trace.go ├── http_trace_test.go ├── proxy/ │ └── proxy.go ├── queue/ │ ├── queue.go │ └── queue_test.go ├── request.go ├── response.go ├── storage/ │ └── storage.go ├── unmarshal.go ├── unmarshal_test.go ├── xmlelement.go └── xmlelement_test.go