Skip to content

Commit

Permalink
Adding link in e-mail sent to users, and readme.md, along with images.
Browse files Browse the repository at this point in the history
  • Loading branch information
jslvtr committed Jan 28, 2016
1 parent 7fdccb4 commit 7d96eb4
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 1 deletion.
Binary file added readme-files/alerts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme-files/create_alert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme-files/edit_store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme-files/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme-files/signup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme-files/stores.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Pricing Service

This is an application built to allow the periodic scanning of online webstores, to notify users of changes in prices of items they select.

It allows administrators (defined via `src/config.py`) to add, remove, and edit online stores.

It parses the store websites using `requests` and `BeautifulSoup`.

It **does not work with Stores that dynamically inject content using JavaScript**.

It allows users to register, log in, and create and modify their alerts.

Technology stack: MongoDB, Python (Flask & Jinja2), HTML/CSS/Bootstrap.

![Home Screen](readme-files/home.png)

![Sign up Screen](readme-files/signup.png)

![Alerts Screen](readme-files/alerts.png)

![Create Alert Screen](readme-files/create_alert.png)

![Stores Screen](readme-files/stores.png)

![Edit Store Screen](readme-files/edit_store.png)
2 changes: 1 addition & 1 deletion src/models/alerts/alert.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def send(self):
"from": AlertConstants.FROM,
"to": self.user_email,
"subject": "Price limit reached for {}".format(self.item.name),
"text": "We've found a deal! (link here)."
"text": "We've found a deal! ({}).".format(self.item.url)
}
)

Expand Down

0 comments on commit 7d96eb4

Please sign in to comment.