Skip to content

Commit b8facaa

Browse files
author
seospace
committed
ser base
1 parent 10ff2a5 commit b8facaa

4 files changed

Lines changed: 134 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ wheels/
2323
.installed.cfg
2424
*.egg
2525
_other
26-
consumers/ser_base
2726

2827
# PyInstaller
2928
# Usually these files are written by a python script from a template
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"engine_name": "example.com",
3+
"engine_type": "Profile-URL",
4+
"description": "",
5+
"page_must_have": "",
6+
"search_term": "",
7+
"add_keyword_to_search": 2,
8+
"dofollow": 0,
9+
"anchor_text": 0,
10+
"creates_own_page": 0,
11+
"extract_keywords": 0,
12+
"extract urls": 0,
13+
"uses_pages": 0,
14+
"posted_domain_check": 0,
15+
"multiple_posts_per_account": 0,
16+
"link_type": "Profile-URL",
17+
"gsa_engines_directory": "C:\\Program Files (x86)\\GSA Search Engine Ranker\\Engines"
18+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import os
2+
from shutil import copy
3+
4+
engine_path = os.path.dirname(os.path.abspath(__file__)) + '\\' + '{{ cookiecutter.engine_name }}.ini'
5+
gsa_dir = r"{{ cookiecutter.gsa_engines_directory }}"
6+
7+
copy(engine_path, gsa_dir)
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
[setup]
2+
enabled=1
3+
default checked=0
4+
engine type={{ cookiecutter.engine_type }}
5+
description={{ cookiecutter.description }}
6+
dofollow={{ cookiecutter.dofollow }}
7+
anchor text={{ cookiecutter.anchor_text }}
8+
creates own page={{ cookiecutter.creates_own_page }}
9+
uses pages={{ cookiecutter.uses_pages }}
10+
multiple posts per account={{ cookiecutter.multiple_posts_per_account }}
11+
add keyword to search={{ cookiecutter.add_keyword_to_search }}
12+
extract keywords={{ cookiecutter.extract_keywords }}
13+
extract urls={{ cookiecutter.uses_pages }}
14+
posted domain check={{ cookiecutter.posted_domain_check }}
15+
16+
use blog search=0
17+
18+
page must have1={{ cookiecutter.page_must_have }}
19+
20+
url must have1=!*google*
21+
url must have2=!*youtube*
22+
url must have3=!*paypal*
23+
24+
search term={{ cookiecutter.search_term }}
25+
26+
;;; NORMAL VARIABLES
27+
[URL]
28+
type=url
29+
30+
[Anchor_Text]
31+
type=text
32+
alternate data=%spinfile-generic_anchor_text.dat%
33+
34+
[Login]
35+
type=login
36+
must be filled=1
37+
hint=The login for websites that need an account. Use numbers and letters only.
38+
min length=8
39+
static=1
40+
41+
[Your E-Mail]
42+
type=email
43+
must be filled=1
44+
static=1
45+
46+
[Password]
47+
type=password
48+
must be filled=1
49+
hint=A password used for websites that need an account. Use numbers and letters only.
50+
min length=8
51+
static=1
52+
53+
[Article_Title]
54+
type=text
55+
hint=The title of your question. Use spin syntax here to not get duplicate content.
56+
min length=10
57+
max length=150
58+
allow html=0
59+
must be filled=1
60+
61+
[Article]
62+
type=memo
63+
must be filled=1
64+
allow html=1
65+
;html to markdown=Markdown basics
66+
html line break=1
67+
hint=The main text of your question. Use spin syntax here to not get duplicate content, and you should either include your link or the correct link macro.
68+
auto modify=0
69+
auto add anchor url=2
70+
auto add anchor url content=%file-auto_anchor-article.dat%
71+
;custom img format=![%alt%](%url% "%alt%")
72+
custom iframe format=" "
73+
custom mode=1
74+
75+
[About_Yourself]
76+
type=memo
77+
allow html=1
78+
;html to markdown=Markdown basics
79+
html line break=1
80+
allow return=1
81+
must be filled=0
82+
hint=Please fill this with some information about yourself. Use the spin syntax heavily here.
83+
auto modify=1
84+
default=%file-about_yourself.dat%
85+
auto add anchor url=2
86+
;custom img format=![%alt%](%url% "%alt%")
87+
custom iframe format=" "
88+
custom mode=1
89+
90+
;;; STEPS
91+
;[REGISTER_STEP1]
92+
;[LOGIN_STEP1]
93+
94+
[REGISTER_STEP1]
95+
link type={{ cookiecutter.engine_type }}
96+
just download=1
97+
98+
submit success="success":true
99+
submit failed="success":false
100+
submit failed retry=XXXXXXXXXXXXXXXXXXXXXXXX
101+
captcha failed=XXXXXXXXXXXXXXXXXXXXXXXX
102+
103+
;verify url=
104+
verify submission=1
105+
verify by=url
106+
verify interval=10
107+
verify timeout=99999999999999999999
108+
first verify=0
109+
verify on unknown status=1

0 commit comments

Comments
 (0)