From ddc9882f8814919dddacdd27332ffe0d993c4f7e Mon Sep 17 00:00:00 2001 From: Karl Lorey Date: Sat, 29 Apr 2023 13:30:05 +0200 Subject: Update README with note on using several samples --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 22db504..60151db 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ After you've defined the data you want to scrape, mlscraper will: Getting started --------------- -mlscraper is currently short before version 1.0. +mlscraper is currently shortly before version 1.0. If you want to check the new release, use :code:`pip install --pre mlscraper` to test the release candidate. You can also install the latest (unstable) development version of mlscraper via :code:`pip install git+https://github.com/lorey/mlscraper#egg=mlscraper`, @@ -74,6 +74,7 @@ To get started with a simple scraped, check out a basic sample below. assert resp.status_code == 200 # create a sample for Albert Einstein + # please add at least two samples in practice to get meaningful rules! training_set = TrainingSet() page = Page(resp.content) sample = Sample(page, {'name': 'Albert Einstein', 'born': 'March 14, 1879'}) -- cgit v1.2.3