Metadata-Version: 2.4
Name: nasdaq-news
Version: 0.1.0
Summary: Python package to fetch NASDAQ-100 stock news from FMP API
Author: Your Name
Author-email: Shekhar Biswas <shekhar07.nitdgp@gmail.com>
Project-URL: Homepage, https://github.com/shekharbiswas/nasdaq_news
Project-URL: Repository, https://github.com/shekharbiswas/nasdaq_news
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests
Requires-Dist: pandas
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# nasdaq_news

Get JSON news data for NASDAQ-100 stocks using a simple Python method.

## Install

```bash
pip install git+https://github.com/shekharbiswas/nasdaq_news.git

import nasdaq_news
from nasdaq_news import get_news

# Fetch local news data for Apple
data = get_news("AAPL")

# View first few articles
print(data)

```


## Structure
Below is the project structure:

<pre>
nasdaq_news/
├── nasdaq_news/
│   ├── __init__.py
│   ├── fetcher.py
│   └── data/
│       ├── AAPL.json
│       ├── MSFT.json
│       └── ... (up to 100 files)
├── setup.py
├── README.md
├── LICENSE
└── .gitignore
</pre>

