added models

This commit is contained in:
Yeqing Zhang
2019-02-12 13:08:04 +08:00
parent 9f84e2fad1
commit 4f2a29bd42
11 changed files with 168 additions and 34 deletions

0
constants/__init__.py Normal file
View File

4
constants/lang.py Normal file
View File

@@ -0,0 +1,4 @@
class LangType:
PYTHON = 1
NODE = 2
GO = 3

4
constants/spider.py Normal file
View File

@@ -0,0 +1,4 @@
class SpiderType:
SCRAPY = 1
PYSPIDER = 2
PUPPETEER = 3