Ejemplo n.º 1
0
def get_fixtures_for_u1718_d1():
    data = {
        "ClubCode": "WESTW",
        "AgeGrp": "U1718M",
        "Division": "1",
        "Team": "",
        "GameDate": "",
        "RoundNo": "",
        "GroundCode": "",
        "showLiveResults": "ON"
    }
    team = "Westminster Warriors U1718 Div1"
    team_id = 43
    my_fixtures = qcsa_org_crawler.get_fixtures(data, team, team_id)
    return my_fixtures
Ejemplo n.º 2
0
def get_fixtures_for_u18_d1():
    data = {
        "ClubCode": "WELSH",
        "AgeGrp": "U1718M",
        "Division": "1",
        "Team": "",
        "GameDate": "",
        "RoundNo": "",
        "GroundCode": "",
        "showLiveResults": "ON"
    }
    team = "BlackStone U1718M Div1"
    team_id = 1
    my_fixtures = qcsa_org_crawler.get_fixtures(data, team, team_id)
    return my_fixtures
Ejemplo n.º 3
0
def get_fixtures_for_sm_d3():
    data = {
        "ClubCode": "WELSH",
        "AgeGrp": "SM",
        "Division": "3",
        "Team": "",
        "GameDate": "",
        "RoundNo": "",
        "GroundCode": "",
        "showLiveResults": "ON"
    }
    team = "BlackStone Mens SM Div3"
    team_id = 42
    my_fixtures = qcsa_org_crawler.get_fixtures(data, team, team_id)
    return my_fixtures
Ejemplo n.º 4
0
def get_fixtures_for_u1516b_d2():
    data = {
        "ClubCode": "WELSH",
        "AgeGrp": "U1516B",
        "Division": "2",
        "Team": "",
        "GameDate": "",
        "RoundNo": "",
        "GroundCode": "",
        "showLiveResults": "ON"
    }
    team = "BlackStone U1516B Div2"  # cannot name the team with U15/16B
    # because this name will be involved in a query. '/' will cause 404, since '/' is keyword in query
    team_id = 2
    my_fixtures = qcsa_org_crawler.get_fixtures(data, team, team_id)
    return my_fixtures