Skip to content

adamin1990/wallhavenSpider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

wallhaven spider by scrapy

  1. create database
CREATE DATABASE `wallhaven` CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
  1. create table
CREATE TABLE `wallhaven`.`Untitled`  (
  `id` int NOT NULL AUTO_INCREMENT,
  `wid` char(20) NOT NULL DEFAULT '',
  `src` varchar(255) NOT NULL DEFAULT '',
  `width` int(6) NOT NULL DEFAULT 0,
  `height` int(6) NOT NULL DEFAULT 0,
  `tags` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE INDEX `wid`(`wid`) USING BTREE
);
  1. scrapy crawl wallhaven

About

wallhavenSpider crawl hot wallpaper from https://wallhaven.cc/ using python scrapy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages