<br>After instantiating KebasData, you need to initialize it to get data from the Url you specified.
<br>This can also be done thru cron if you want to have this daily.
<br>Access get_matched()
<br>
<br>You can change:
<br>-your regular expression pattern
<br>-your start of body pattern
<br>-your end of body pattern
<br>-your URL
<br>
<br>You need to initialize after every attribute change.
<br>
<br>
This view helps determine how you can manipulate data retrieved. 
You can have a list of items, or a list of tuples if your regular expression uses grouping.
e.g:
	<img.*?> will return a list of data
	<img(.*?)alt(.*?)> will return a list of tuples.

You can access data as you would any list.


