Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adelq/penndining
Programmatically fetches and parses PennDining data
https://github.com/adelq/penndining
Last synced: about 6 hours ago
JSON representation
Programmatically fetches and parses PennDining data
- Host: GitHub
- URL: https://github.com/adelq/penndining
- Owner: adelq
- License: gpl-3.0
- Created: 2013-11-22T01:47:31.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-27T20:15:23.000Z (about 10 years ago)
- Last Synced: 2023-08-05T18:48:23.771Z (over 1 year ago)
- Language: JavaScript
- Size: 3.1 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PennDining Parser
=================Preliminary attempt at programmatically fetching PennDining information.
Note: Your use of PennDining data may or may not be allowed. Use at your risk.Team
----
Adel Qalieh -- Javascript -- @adelq
Prakhar Bhandari -- Python Backend -- @pbjr23
David Lakata -- Flask templating -- @dlakataTechnology
----------
HTML5, CSS3
Bootstrap
Normalize.css, jQuery, Moment.js
Python, Flask, BeautifulSoupGetting Started
---------------
1. Install [virtualenv](http://www.virtualenv.org/) on your computer
2. Create a virtualenv for PennDining```
$ virtualenv penndining
```
3. Activate virtualenv```
$ cd penndining
$ source bin/activate
```
4. Install Python module dependencies, namely `Flask` and `BeautifulSoup4````
$ pip install flask BeautifulSoup4
```
5. Clone git repository into directory```
$ git clone https://github.com/adelq/penndining.git
```
6. Start server```
$ python penndining/app.py
```