22 lines
636 B
Text
22 lines
636 B
Text
This set of scripts hopefully evolve into a useful tool for creating and managing google adwords.
|
|
|
|
First Goal:
|
|
- get three comma separated lists of keywords
|
|
- return:
|
|
a string containing a combination of keywords from list 1 and two with
|
|
every word from list. this combination is then printed either as-is or
|
|
with "" or [].
|
|
|
|
Example of First Goal:
|
|
./adstreme.py "organic" "shirts" ",buy,shop"
|
|
results in:
|
|
organic shirts
|
|
"organic shirts"
|
|
[organic shirts]
|
|
organic shirts buy
|
|
"organic shirts buy"
|
|
[organic shirts buy]
|
|
organic shirts shop
|
|
"organic shirts shop"
|
|
[organic shirts shop]
|
|
|