├── .dockerignore ├── .vs ├── NScrapy │ └── v15 │ │ └── .suo └── config │ └── applicationhost.config ├── LICENSE ├── NScrapy.Downloader ├── Downloader.cs ├── DownloaderContext.cs ├── Middleware │ ├── HttpDecompressionMiddleware.cs │ ├── HttpHeaderMiddleware.cs │ └── HttpUserAgentPoolMiddleware.cs └── NScrapy.Downloader.csproj ├── NScrapy.DownloaderShell ├── NScrapy.DownloaderShell.csproj ├── NScrapy.DownloaderShell.csproj.user ├── Program.cs ├── RedisManager.cs ├── StatusUpdaterMiddleware.cs ├── appsetting.json └── log4net.config ├── NScrapy.Engine ├── MockEngine.cs ├── NScrapy.Engine.csproj └── NScrapyEngine.cs ├── NScrapy.Infra ├── Attributes │ └── SpiderAttributes │ │ ├── NameAttribute.cs │ │ ├── SettingsAttribute.cs │ │ └── URLAttribute.cs ├── ConfigFactory.cs ├── ConfigProvider │ ├── ConfigProviderFactory.cs │ ├── DefaultConfigProvider.cs │ └── ZookeeperConfigProvider.cs ├── EmptyDownloaderMiddleware.cs ├── EmptySpiderMiddleware.cs ├── HttpRequest.cs ├── HttpResponse.cs ├── IConfigProvider.cs ├── IDownloaderMiddleware.cs ├── IEngine.cs ├── IPipeline.cs ├── IRequest.cs ├── IResponse.cs ├── IScheduler.cs ├── ISpider.cs ├── ISpiderMiddleware.cs ├── IUrlFilter.cs ├── InMemoryUrlFilter.cs ├── ItemLoader.cs ├── ItemLoaderFactory.cs ├── NScrapy.Infra.csproj ├── NScrapyContext.cs ├── NScrapyHelper.cs ├── Pipeline │ └── MockPipeline.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx └── log4net.config ├── NScrapy.Project ├── CSVItemPipeline.cs ├── DownloaderMiddleware │ ├── CookiesDownloaderMiddleware.cs │ └── DownloaderLatencyMiddleware.cs ├── MongoItemPipeline.cs ├── NScrapy.Project.csproj ├── NScrapy.Project.csproj.user ├── Program.cs ├── Spiders │ └── lianjia.cs └── appsetting.json ├── NScrapy.Scheduler ├── InMemoryScheduler.cs ├── NScrapy.Scheduler.csproj ├── NScrapy.Scheduler.csproj.user ├── RedisExt │ ├── RedisRequestMessage.cs │ ├── RedisResponseDistributer.cs │ ├── RedisResponseMessage.cs │ ├── RedisScheduler.cs │ ├── RedisSchedulerContext.cs │ └── RedisUrlFilter.cs ├── RequestReceiver.cs └── ResponseDistributer.cs ├── NScrapy.Spider ├── Middleware │ └── DeepthMiddleware.cs ├── NScrapy.Spider.csproj ├── Spider.cs └── SpiderFactory.cs ├── NScrapy.Test ├── MockConfigProvider.cs ├── NScrapy.Test.csproj ├── NScrapy.Test.csproj.user ├── UnitTest1.cs ├── appsetting.json ├── appsettingMockConfig.json ├── appsettingRedis.json └── appsettingUserAgent.json ├── NScrapy.sln ├── NScrapy ├── NScrapy.Shell.csproj └── NScrapy.cs ├── README.md ├── _config.yml ├── azure-pipelines.yml └── redis.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.vs/NScrapy/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/.vs/NScrapy/v15/.suo -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/LICENSE -------------------------------------------------------------------------------- /NScrapy.Downloader/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/Downloader.cs -------------------------------------------------------------------------------- /NScrapy.Downloader/DownloaderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/DownloaderContext.cs -------------------------------------------------------------------------------- /NScrapy.Downloader/Middleware/HttpDecompressionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/Middleware/HttpDecompressionMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Downloader/Middleware/HttpHeaderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/Middleware/HttpHeaderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Downloader/Middleware/HttpUserAgentPoolMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/Middleware/HttpUserAgentPoolMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Downloader/NScrapy.Downloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Downloader/NScrapy.Downloader.csproj -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/NScrapy.DownloaderShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/NScrapy.DownloaderShell.csproj -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/NScrapy.DownloaderShell.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/NScrapy.DownloaderShell.csproj.user -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/Program.cs -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/RedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/RedisManager.cs -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/StatusUpdaterMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/StatusUpdaterMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/appsetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/appsetting.json -------------------------------------------------------------------------------- /NScrapy.DownloaderShell/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.DownloaderShell/log4net.config -------------------------------------------------------------------------------- /NScrapy.Engine/MockEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Engine/MockEngine.cs -------------------------------------------------------------------------------- /NScrapy.Engine/NScrapy.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Engine/NScrapy.Engine.csproj -------------------------------------------------------------------------------- /NScrapy.Engine/NScrapyEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Engine/NScrapyEngine.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Attributes/SpiderAttributes/NameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Attributes/SpiderAttributes/NameAttribute.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Attributes/SpiderAttributes/SettingsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Attributes/SpiderAttributes/SettingsAttribute.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Attributes/SpiderAttributes/URLAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Attributes/SpiderAttributes/URLAttribute.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ConfigFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ConfigFactory.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ConfigProvider/ConfigProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ConfigProvider/ConfigProviderFactory.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ConfigProvider/DefaultConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ConfigProvider/DefaultConfigProvider.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ConfigProvider/ZookeeperConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ConfigProvider/ZookeeperConfigProvider.cs -------------------------------------------------------------------------------- /NScrapy.Infra/EmptyDownloaderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/EmptyDownloaderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Infra/EmptySpiderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/EmptySpiderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Infra/HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/HttpRequest.cs -------------------------------------------------------------------------------- /NScrapy.Infra/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/HttpResponse.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IConfigProvider.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IDownloaderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IDownloaderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IEngine.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IPipeline.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IRequest.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IResponse.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IScheduler.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ISpider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ISpider.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ISpiderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ISpiderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Infra/IUrlFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/IUrlFilter.cs -------------------------------------------------------------------------------- /NScrapy.Infra/InMemoryUrlFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/InMemoryUrlFilter.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ItemLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ItemLoader.cs -------------------------------------------------------------------------------- /NScrapy.Infra/ItemLoaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/ItemLoaderFactory.cs -------------------------------------------------------------------------------- /NScrapy.Infra/NScrapy.Infra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/NScrapy.Infra.csproj -------------------------------------------------------------------------------- /NScrapy.Infra/NScrapyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/NScrapyContext.cs -------------------------------------------------------------------------------- /NScrapy.Infra/NScrapyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/NScrapyHelper.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Pipeline/MockPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Pipeline/MockPipeline.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NScrapy.Infra/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/Properties/Resources.resx -------------------------------------------------------------------------------- /NScrapy.Infra/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Infra/log4net.config -------------------------------------------------------------------------------- /NScrapy.Project/CSVItemPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/CSVItemPipeline.cs -------------------------------------------------------------------------------- /NScrapy.Project/DownloaderMiddleware/CookiesDownloaderMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/DownloaderMiddleware/CookiesDownloaderMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Project/DownloaderMiddleware/DownloaderLatencyMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/DownloaderMiddleware/DownloaderLatencyMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Project/MongoItemPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/MongoItemPipeline.cs -------------------------------------------------------------------------------- /NScrapy.Project/NScrapy.Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/NScrapy.Project.csproj -------------------------------------------------------------------------------- /NScrapy.Project/NScrapy.Project.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/NScrapy.Project.csproj.user -------------------------------------------------------------------------------- /NScrapy.Project/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/Program.cs -------------------------------------------------------------------------------- /NScrapy.Project/Spiders/lianjia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/Spiders/lianjia.cs -------------------------------------------------------------------------------- /NScrapy.Project/appsetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Project/appsetting.json -------------------------------------------------------------------------------- /NScrapy.Scheduler/InMemoryScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/InMemoryScheduler.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/NScrapy.Scheduler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/NScrapy.Scheduler.csproj -------------------------------------------------------------------------------- /NScrapy.Scheduler/NScrapy.Scheduler.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/NScrapy.Scheduler.csproj.user -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisRequestMessage.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisResponseDistributer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisResponseDistributer.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisResponseMessage.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisScheduler.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisSchedulerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisSchedulerContext.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RedisExt/RedisUrlFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RedisExt/RedisUrlFilter.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/RequestReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/RequestReceiver.cs -------------------------------------------------------------------------------- /NScrapy.Scheduler/ResponseDistributer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Scheduler/ResponseDistributer.cs -------------------------------------------------------------------------------- /NScrapy.Spider/Middleware/DeepthMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Spider/Middleware/DeepthMiddleware.cs -------------------------------------------------------------------------------- /NScrapy.Spider/NScrapy.Spider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Spider/NScrapy.Spider.csproj -------------------------------------------------------------------------------- /NScrapy.Spider/Spider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Spider/Spider.cs -------------------------------------------------------------------------------- /NScrapy.Spider/SpiderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Spider/SpiderFactory.cs -------------------------------------------------------------------------------- /NScrapy.Test/MockConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/MockConfigProvider.cs -------------------------------------------------------------------------------- /NScrapy.Test/NScrapy.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/NScrapy.Test.csproj -------------------------------------------------------------------------------- /NScrapy.Test/NScrapy.Test.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/NScrapy.Test.csproj.user -------------------------------------------------------------------------------- /NScrapy.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/UnitTest1.cs -------------------------------------------------------------------------------- /NScrapy.Test/appsetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/appsetting.json -------------------------------------------------------------------------------- /NScrapy.Test/appsettingMockConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/appsettingMockConfig.json -------------------------------------------------------------------------------- /NScrapy.Test/appsettingRedis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/appsettingRedis.json -------------------------------------------------------------------------------- /NScrapy.Test/appsettingUserAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.Test/appsettingUserAgent.json -------------------------------------------------------------------------------- /NScrapy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy.sln -------------------------------------------------------------------------------- /NScrapy/NScrapy.Shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy/NScrapy.Shell.csproj -------------------------------------------------------------------------------- /NScrapy/NScrapy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/NScrapy/NScrapy.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/_config.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xboxeer/NScrapy/HEAD/redis.conf --------------------------------------------------------------------------------