oops forgot to readd stuff cuz i moved it >~<
This commit is contained in:
parent
8ed5644f81
commit
fea0c31d08
9 changed files with 242 additions and 1 deletions
17
category/deviantart.py
Normal file
17
category/deviantart.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
def makeKeyWordList(tags):
|
||||
catPaths = {
|
||||
'digitalart/paintings/other': ['Digital Art', 'Paintings']
|
||||
}
|
||||
output = [
|
||||
tags.da_category,
|
||||
tags.license,
|
||||
tags.author.username
|
||||
]
|
||||
|
||||
if tags.is_mature:
|
||||
output.append('is_mature')
|
||||
|
||||
|
||||
for item in .get(tags.category_path,[]):
|
||||
output.append(item)
|
||||
|
9
category/furaffinity.py
Normal file
9
category/furaffinity.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
def makeKeyWordList(tags):
|
||||
return [
|
||||
tags.theme,
|
||||
tags.rating,
|
||||
tags.species,
|
||||
tags.gender,
|
||||
tags.artist_url,
|
||||
tags.fa_category
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue