Metadata-Version: 2.1
Name: moneycontrol
Version: 1.0.0
Summary: Web scraper for moneycontrol.com
Home-page: https://github.com/Avchhikara/moneycontrol
Author: Avnish
Author-email: avnishchhikara@outlook.com
License: MIT
Keywords: moneycontrol,money control,web scraping,scrape articles
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# MoneyControl scrapper

This package basically scrape the moneycontrol.com website.

### Installation

`pip install moneycontrol`

### Functionalities supported for now

1. **Getting an article**

   Usage:

   ```
   from moneycontrol.ArticleExtractor import get_article
   article = get_article(article_url)
   ```

   Article object would look like:

   ```
   {
       'title': 'Despite...',
       'summary': 'Many investors ...',
       'timestamp': '2021-04-02 11:34:00',
       'author': 'Dev Ashish',
       'img_url': 'https://images.moneycontrol.com/...,
       'content': 'Before we discuss that, let us quickly see how PPF interest is calculated. This assumes significance as many people invest Rs 1.5 lakh in PPF ... ',
       'tags': [
           'Fixed Income',
           'personal finance',
           'PPF',
           'Small Savings Scheme',
           '...'
       ]
   }
   ```

### May support in future

1. **Getting company financial data (moneycontrol has a lot of it)**
1. anything else


