23 lines
423 B
Python
23 lines
423 B
Python
"""
|
|
Credit Cost Constants
|
|
"""
|
|
CREDIT_COSTS = {
|
|
'clustering': {
|
|
'base': 1, # 1 credit per 30 keywords
|
|
'per_keyword': 1 / 30,
|
|
},
|
|
'ideas': {
|
|
'base': 1, # 1 credit per idea
|
|
},
|
|
'content': {
|
|
'base': 3, # 3 credits per full blog post
|
|
},
|
|
'images': {
|
|
'base': 1, # 1 credit per image
|
|
},
|
|
'reparse': {
|
|
'base': 1, # 1 credit per reparse
|
|
},
|
|
}
|
|
|