Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/venkateshshukla/th-editorials-server
Get the editorials published in The Hindu, the leading english daily in India
https://github.com/venkateshshukla/th-editorials-server
Last synced: 17 days ago
JSON representation
Get the editorials published in The Hindu, the leading english daily in India
- Host: GitHub
- URL: https://github.com/venkateshshukla/th-editorials-server
- Owner: venkateshshukla
- License: mit
- Created: 2015-05-08T10:51:08.000Z (over 9 years ago)
- Default Branch: devel
- Last Pushed: 2017-01-25T03:36:09.000Z (almost 8 years ago)
- Last Synced: 2024-08-08T00:44:14.492Z (4 months ago)
- Language: Python
- Size: 69.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - venkateshshukla/th-editorials-server - Get the editorials published in The Hindu, the leading english daily in India (Python)
README
Get new editorials published in The Hindu
=========================================Get any new editorials published in The Hindu, the leading english daily in
India.Dependencies
============
1. Requests - http://docs.python-requests.org/en/latest/
2. FeedParser - https://pythonhosted.org/feedparser/
3. BeautifulSoup - http://www.crummy.com/software/BeautifulSoup/Deploying to Google App Engine
==============================Adding feedparser to GAE
Google App Engine supports only certain libraries. For other libraries,
including feedparser, additional steps need to be taken in order to make
it work.For this, follow these steps
1. Install virtualenv `sudo pip install virtualenv`
2. Create virualenv outside source `virtualenv ../appenv`
3. Activate virtualenv `source ../appenv/bin/activate`
4. Make a lib folder in application source `mkdir lib`
5. Install the dependencies in lib folder using pip `pip install -t lib -r requirements.txt`And you are done.
Deploy the application to local machine using `dev_appserver.py .`