https://github.com/b72u68/cs-iit-scraper
Ocaml web scraper for Computer Science courses on Illinois Tech website
https://github.com/b72u68/cs-iit-scraper
Last synced: 3 months ago
JSON representation
Ocaml web scraper for Computer Science courses on Illinois Tech website
- Host: GitHub
- URL: https://github.com/b72u68/cs-iit-scraper
- Owner: b72u68
- Created: 2021-10-06T21:21:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-07T21:48:15.000Z (over 3 years ago)
- Last Synced: 2025-01-20T00:41:52.074Z (5 months ago)
- Language: OCaml
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS at IIT Scraper
Ocaml web scraper for Computer Science courses on Illinois Tech website
using [Cohttp](https://github.com/mirage/ocaml-cohttp),
[Lwt](https://ocsigen.org/lwt/latest/manual/manual),
and [Lambdasoup](https://github.com/aantron/lambdasoup).## Installation
This project requires Ocaml and Ocaml package manager `opam`. To install
`opam`, use the command line bellow in your preferred shell or follow
this link [Install OPAM](https://opam.ocaml.org/doc/Install.html).```bash
your-package-manager install opam
opam init
```Clone this repository to your local machine and install the requirement
libraries using `opam`.```bash
git clone https://github.com/b72u68/cs-iit-scraper
cd cs-iit-scraper
opam install .
```## Build
Run the following command to build project and create executable file.
```bash
make
```or you can do
```bash
make build
```or
```bash
ocamlbuild -I src -use-ocamlfind scraper.native
```