ARS is a stand-alone, self-contained system which takes a website's user engagement data as input, and for every page in that website outputs a suggested price for an advertisement. ARS also incorporates an ad-keyword query feature so that a user is able to query the system with keywords related to the product which the user is attempting to advertise, and the ARS suggests pages where that keyword would be relevant.
This section lists all the necessary prerequisites needed for running the ARS as well instructions on how to install them.
- Python3
- PIP Package Manager
- Flask Micro Web Framework
- Flask SQL Alchemy
- Flask Bootstrap
- Flask Login
- Flask WTF
- WTForms
- Beautiful Soup HTML Parser
- Python3
- pip package manager
- Flask
$ pip3 install flask
- Flask SQLAlchemy
$ pip3 install flask-sqlalchemy
- Flask Bootstrap
$ pip3 install flask-bootstrap
- Flask Login
$ pip3 install flask-login
- Flask WTF
$ pip3 install flask-wtf
- WTForms
$ pip3 install wtforms
- Beautiful Soup
$ pip3 install bs4
- Navigate to the root directory of the ARS
- Open a terminal
$ python3 app.py- Launch a web browser
- In the URL bar type
localhost:8080
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.