Metadata-Version: 2.4
Name: finsolvepy
Version: 2.0.0
Summary: finsolvepy is a Python package for comprehensive financial analysis, enabling users to access detailed stock and cryptocurrency data, validate market symbols, convert currencies, and perform key financial calculations with ease.
Home-page: https://github.com/vengateshk18/finsolvepy
Author: Vengatesh K
Author-email: vengatesh00014@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7,<4.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas<3.0.0,>=1.0.0
Requires-Dist: requests<3.0.0,>=2.0.0
Requires-Dist: python-dotenv>=0.10.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# finsolvepy

**`finsolvepy`** is a versatile Python package for financial enthusiasts and professionals, offering powerful tools to access and analyze **stock market**, **cryptocurrency**, and **currency exchange** data.  
Whether you are a retail investor, analyst, or developer, `finsolvepy` provides an easy-to-use API to fetch, validate, and calculate financial metrics.

---

## Features

### **Stocks & Indices**
- **Detailed Stock Information:** Get market cap, price, company description, ROE, ROCE, and more.
- **Validate Stock Symbols:** Ensure ticker symbols are correct before querying.
- **Market Index Data:** Retrieve descriptions and lists of Indian and US indices.

### **Cryptocurrencies**
- **Detailed Coin Information:** Access market cap, price, description, rankings, and more.
- **Validate Crypto Symbols:** Quickly check if a cryptocurrency ticker is valid.

### **Currency Conversion**
- **Currency Converter:** Convert amounts between any two currencies in real time.
- **Exchange Rates:** Fetch the current exchange rate between two currencies.

### **Financial Calculations**
- **Price-to-Earnings (P/E) Ratio**
- **Years to Double Investment**

---

## Installation

```bash
pip install finsolvepy
````

---

## Usage Examples

### Get Detailed Stock Information

```python
from finsolvepy.information import StockInsights

obj = StockInsights()
apple_details = obj.stock_detail('AAPL')
print(apple_details)
```

**Example Output:**

```json
{
  "symbol": "AAPL",
  "company": "Apple Inc",
  "market_cap": "3456956105000 USD",
  "about": "Apple Inc. is an American multinational technology company...",
  "curr_market_price": "$227.3877",
  "book_value": "51.83",
  "dividend": "0.0044",
  "roce": 3.812053060477029,
  "roe": "1.606",
  "face_value": 10
}
```

---

### Validate Stock Symbol

```python
from finsolvepy.information import StockInsights

obj = StockInsights()
print(obj.is_valid_symbol('TATAMOTORS'))
```

**Output:**

```bash
True
```

---

### Calculate Price-to-Earnings (P/E) Ratio

```python
from finsolvepy.calculation import Metrics

obj = Metrics()
pe = obj.pe_ratio(earnings=227270000000, no_of_shares=2534202430, current_market_price=1779)
print(pe)
```

**Output:**

```bash
19.836960984599816
```

---

### Calculate Years to Double Your Money

```python
from finsolvepy.calculation import Metrics

obj = Metrics()
years = obj.years_to_double_money(interest=7.5)
print(years)
```

**Output:**

```bash
9.6 years
```

---

### Get Cryptocurrency Details

```python
from finsolvepy.information import CryptocurrencyInsights

crypto = CryptocurrencyInsights()
btc_details = crypto.coin_details("Bitcoin")
print(btc_details)
```

**Example Output:**

```json
{
  "data": {
    "name": "Bitcoin",
    "symbol": "btc",
    "description": "Bitcoin is the first successful internet money...",
    "current_price_usd": 118745,
    "market_cap": 2363422930356,
    "volume": 34429259271,
    "market_cap_rank": 1,
    "fully_diluted_valuation": 2363422930356,
    "last_updated": "2025-08-10T14:58:20.713Z"
  }
}
```

---

### Validate Cryptocurrency Symbol

```python
from finsolvepy.information import CryptocurrencyInsights

crypto = CryptocurrencyInsights()
print(crypto.is_valid_symbol("BTC"))
```

**Output:**

```bash
True
```

---

### Convert Currency

```python
from finsolvepy.information import CurrencyConverter

cc = CurrencyConverter()
converted_amount = cc.convert(from_currency="INR", to_currency="USD", amount=100)
print(converted_amount)
```

**Output:**

```bash
$1.141
```

---

### Get Currency Exchange Rate

```python
from finsolvepy.information import CurrencyConverter

cc = CurrencyConverter()
rate = cc.exchange_rate(from_currency="USD", to_currency="INR")
print(rate)
```

**Output:**

```bash
87.6119
```

---

## Conclusion

With a wide range of features from stock market insights to cryptocurrency analysis and currency conversion â€” `finsolvepy` is your go-to toolkit for financial data.
Whether you're an experienced trader or just starting your investment journey, `finsolvepy` empowers you to make informed financial decisions.

---

## Author

**Vengatesh K**
[GitHub](https://github.com/vengateshk18)
Feel free to fork the repository and contribute!
