-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathverifyAddress.json
41 lines (41 loc) · 1.45 KB
/
verifyAddress.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"/* comment */": [
"This is the configurations file for verifyAddress.py"
],
"MySQL": {
"/* comment */": [
"The configuration variables for MySQL",
"user - the username for connecting to the database [required]",
"passwd - the user password for connecting to the database [required]",
"databaseName - the default database [optional]"
],
"connectionString": "mysql+mysqlconnector://{username}:{password}@{server}/{databaseName}",
"username": "root",
"password": "example",
"server": "localhost",
"databaseName": "GNAF"
},
"MSSQL": {
"/* comment */": [
"The configuration variables for MSSQL",
"user - the username for connecting to the database [required]",
"passwd - the user password for connecting to the database [required]",
"databaseName - the default database [optional]"
],
"connectionString": "mssql+pyodbc://{username}:{password}@{server}/{databaseName}?driver=SQL+Server",
"username": "root",
"password": "example",
"server": "localhost:1433",
"databaseName": "GNAF"
},
"weights": {
"/* comment */": [
"The suburbSourceWeights, streetSourceWeights and fuzzLevels"
],
"suburbSourceWeights": { "G":10, "GA":9, "GN":8, "GS":5, "GL":4, "GAS":2, "GAL":1, "":0 },
"streetSourceWeights": { "G":10, "GA":9, "GS":5, "GL":4, "GAS":2, "GAL":1, "":0 },
"fullfuzzLevels": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ],
"nofuzzLevels": [ 1 ],
"fuzzLevels": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
}
}