Metadata-Version: 2.4
Name: marketminer
Version: 0.1.0
Summary: A Python library for scraping financial data from various sources.
Home-page: https://github.com/vaibhavjha100/marketminer
Author: Vaibhav Jha
Author-email: vaibhavjha100@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: pandas
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MarketMiner

MarketMiner is a Python library for scraping finance-related information — from market news to company fundamentals — in an easy and structured way.

It is designed for analysts, traders, and developers who want quick programmatic access to financial data without relying on expensive APIs.

## Features

- **News Scraper**: Get historical news articles from various sources.
- **Company Fundamentals**: Access financial statements and key metrics for public companies.
- **Utility Functions**: Common helpers for parsing, cleaning, and making requests.

## Installation
```bash
pip install git+https://github.com/vaibhavjha100/marketminer.git
```

## Usage
```python
from marketminer import scrape_economic_times

df = scrape_economic_times(start_date='2023-01-01', end_date='2023-10-01')
print(df.head())
```

