pub mod globals {
pub const SCRAP_PAGE: &str = "scrapPage"; pub const ACCEPT_URL: &str = "acceptUrl";
pub const SWS: &str = "sws"; }
pub mod sws {
pub const SEED_SITEMAPS: &str = "seedSitemaps"; pub const SEED_PAGES: &str = "seedPages"; pub const SEED_ROBOTS_TXT: &str = "seedRobotsTxt";
pub const CSV_WRITER_CONFIG: &str = "csvWriterConfig"; pub const CRAWLER_CONFIG: &str = "crawlerConfig";
pub mod html {
pub const SELECT: &str = "select"; pub const ROOT: &str = "root"; }
pub mod select {
pub const ITER: &str = "iter"; pub const ENUMERATE: &str = "enumerate"; }
pub mod elem_ref {
pub const SELECT: &str = "select"; pub const INNER_HTML: &str = "innerHtml"; pub const INNER_TEXT: &str = "innerText"; pub const NAME: &str = "name"; pub const ID: &str = "id"; pub const HAS_CLASS: &str = "hasClass"; pub const CLASSES: &str = "classes"; pub const ATTR: &str = "attr"; pub const ATTRS: &str = "attrs"; }
pub const DATE: &str = "Date"; pub mod date {
pub const FORMAT: &str = "format"; }
pub mod scraping_context {
pub const PAGE_LOCATION: &str = "pageLocation"; pub const SEND_RECORD: &str = "sendRecord"; pub const SEND_URL: &str = "sendUrl"; pub const WORKER_ID: &str = "workerId"; pub const ROBOT: &str = "robot"; }
pub mod page_location {
pub const KIND: &str = "kind"; pub const GET: &str = "get"; }
pub const LOCATION: &str = "Location"; pub mod location {
pub const URL: &str = "URL"; pub const PATH: &str = "PATH"; }
pub const RECORD: &str = "Record"; pub mod record {
pub const PUSH_FIELD: &str = "pushField"; }
pub mod crawling_context {
pub const ROBOT: &str = "robot"; pub const SITEMAP: &str = "sitemap"; }
pub mod robot {
pub const ALLOWED: &str = "allowed"; }
pub const SITEMAP: &str = "Sitemap"; pub mod sitemap {
pub const INDEX: &str = "INDEX"; pub const URL_SET: &str = "URL_SET"; }
}