8.1.3 • Published 1 month ago

vex-qna-archiver v8.1.3

Weekly downloads
1
License
GPL-3.0
Repository
github
Last release
1 month ago

vex-qna-archiver

A set of utilities focused on scraping the VEX Robotics Q&A.

Usage

Retreiving All Questions

import { getAllQuestions } from "vex-qna-archiver";

(async () => {
    const questions = await getAllQuestions();
})();

Retreiving and Filtering Questions

import { getQuestions } from "vex-qna-archiver";

(async () => {
    // gets all questions from the current season
    const currentSeasonQuestions = await getQuestions();

    // get all questions from a particular season
    const specificSeasonQuestions = await getQuestions(["2020-2021"]);

    // get all VEXU questions from the 2020-2021 season
    const filteredQuestions = await getQuestions({
        VEXU: ["2020-2021"]
    });
})();

Retrieving Unanswered Questions

import { getUnansweredQuestions } from "vex-qna-archiver";

(async () => {
    const questions = await getUnansweredQuestions();
})();
8.1.3

1 month ago

8.1.2

1 month ago

8.1.0

3 months ago

8.1.1

3 months ago

8.0.1

4 months ago

8.0.0

4 months ago

7.1.1

4 months ago

7.0.2

4 months ago

7.1.0

4 months ago

7.0.1

4 months ago

6.0.1

7 months ago

7.0.0

7 months ago

6.0.1-0

9 months ago

6.0.0-0

9 months ago

5.0.0

1 year ago

3.1.0

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

3.0.0

2 years ago

2.3.0

2 years ago

2.4.1

2 years ago

2.4.0

2 years ago

2.3.1

2 years ago

2.2.0

2 years ago

2.1.1

2 years ago

2.0.2

2 years ago

2.0.1-0

2 years ago

2.1.0

2 years ago

2.0.1

2 years ago

2.0.0-rc1

2 years ago

1.0.14

2 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago