Metadata-Version: 2.4
Name: casased
Version: 0.2.2
Summary: Python library to retrieve historical and intraday data from Casablanca Stock Exchange via Medias24 API with Cloudflare bypass
Home-page: https://github.com/QuantBender/casased
Author: Désiré A. D.
Author-email: desire.dosseh@example.com
License: MIT
Keywords: Web scraping,financial data,casablanca,stock exchange,morocco,MASI
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: pandas
Requires-Dist: lxml
Provides-Extra: cloudflare
Requires-Dist: nodriver>=0.30; extra == "cloudflare"
Requires-Dist: seleniumbase>=4.0.0; extra == "cloudflare"
Provides-Extra: browser
Requires-Dist: nodriver>=0.30; extra == "browser"
Requires-Dist: seleniumbase>=4.0.0; extra == "browser"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

# casased

<p align="center">
<img src="media/casased.png" alt="casased logo">
</p>

**casased** — Casablanca Stock Exchange Data Retriever

A Python library to retrieve historical and intraday data from the Casablanca Stock Exchange (Bourse de Casablanca) using the [Medias24 API](https://medias24.com/bourse).

[![PyPI version](https://badge.fury.io/py/casased.svg)](https://pypi.org/project/casased/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Features

- 📈 **Historical Data**: Daily OHLCV data for all listed stocks
- 📊 **Index Data**: MASI and MSI20 historical data
- ⏱️ **Intraday Data**: Real-time intraday prices
- 🏦 **Multiple Assets**: Load data for multiple stocks at once
- ⚖️ **Index Weights**: Market index weights (pondération)
- 🔤 **Asset Aliases**: Support for common ticker aliases (CFG, CMG, IAM, MDP, SAM)

> **Note**: Some features (getCours, getKeyIndicators, getDividend, getIndex, getIndexRecap) are temporarily unavailable due to website changes. See [ROADMAP.md](ROADMAP.md) for details.

## Installation

```bash
pip install casased
```

### Cloudflare Bypass (Optional)

If you encounter 403 errors due to Cloudflare protection, install browser automation tools:

```bash
# Install with browser automation support
pip install casased[cloudflare]

# Or install manually
pip install nodriver seleniumbase
```

The library will automatically use headless browser automation as a fallback when direct API requests fail.

## Quick Start

```python
import casased as cas

# List available assets
assets = cas.notation()

# Get historical data for a stock
df = cas.get_history('BCP', start='2024-01-01', end='2024-12-31')

# Get MASI index history
masi = cas.get_history('MASI')

# Load multiple assets
banks = cas.loadmany(['BCP', 'CIH', 'Attijariwafa'], start='2024-01-01', end='2024-12-31')

# Get intraday data
intraday = cas.get_intraday('BCP')
```

## API Reference

### Historical Data

#### `get_history(identifier, start=None, end=None)`

Get historical daily data for a stock or index.

```python
# Stock data
df = cas.get_history('Addoha', start='2024-01-01', end='2024-06-30')

# Index data
masi = cas.get_history('MASI')
msi20 = cas.get_history('MSI20')
```

**Returns**: DataFrame with columns: `Value`, `Min`, `Max`, `Variation`, `Volume`

#### `loadmany(*assets, start=None, end=None, feature='Value')`

Load data for multiple assets.

```python
# Load closing prices
df = cas.loadmany(['BCP', 'CIH', 'BOA'], start='2024-01-01', end='2024-12-31')

# Load volumes
volumes = cas.loadmany(['BCP', 'CIH'], feature='Volume')
```

### Intraday Data

#### `get_intraday(identifier)`

Get intraday prices for a stock or index.

```python
# Stock intraday
intraday = cas.get_intraday('BCP')

# Market intraday
market = cas.get_intraday('MASI')
```

### Company Information

> ⚠️ **Temporarily Unavailable**: The following functions are currently deprecated due to changes in the casablanca-bourse.com website structure. They return empty dictionaries with deprecation warnings. See [ROADMAP.md](ROADMAP.md) for restoration timeline.

#### `getCours(name)` *(deprecated)*

Get session data, latest transactions, and order book.

```python
cours = cas.getCours('BOA')  # Returns {} with deprecation warning
```

#### `getKeyIndicators(name)` *(deprecated)*

Get company key indicators and financial ratios.

```python
indicators = cas.getKeyIndicators('Attijariwafa')  # Returns {} with deprecation warning
```

#### `getDividend(name)` *(deprecated)*

Get dividend history.

```python
dividends = cas.getDividend('BOA')  # Returns {} with deprecation warning
```

### Market Overview

#### `getIndex()` *(deprecated)*

Get all index summaries.

```python
index = cas.getIndex()  # Returns {} with deprecation warning
```

#### `getPond()`

Get index weights (pondération).

```python
weights = cas.getPond()
```

#### `getIndexRecap()` *(deprecated)*

Get session recap with top gainers/losers.

```python
recap = cas.getIndexRecap()  # Returns {} with deprecation warning
```

### Utilities

#### `notation()`

Get list of all available asset names.

```python
assets = cas.notation()
```

#### `get_isin_by_name(name)`

Get ISIN code for an asset. Supports aliases like CFG, CMG, IAM, MDP, SAM.

```python
isin = cas.get_isin_by_name('BCP')  # Returns 'MA0000011884'
isin = cas.get_isin_by_name('IAM')  # Returns 'MA0000011488' (alias for Maroc Telecom)
```

## Data Sources

- **Historical & Intraday Data**: [Medias24 API](https://medias24.com/bourse)
- **Company Info & Market Data**: [Bourse de Casablanca](https://www.casablanca-bourse.com)

## Requirements

- Python 3.7+
- requests
- beautifulsoup4
- pandas
- lxml

## Example Notebook

[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/QuantBender/casased/blob/main/casased_exemple.ipynb)

See [casased_exemple.ipynb](https://colab.research.google.com/github/QuantBender/casased/blob/main/casased_exemple.ipynb) for a complete demonstration of all features.

## Release Notes

- **v0.2.0** — 2026-01-14 — Added asset aliases (CFG, CMG, IAM, MDP, SAM), deprecated broken scraping functions, updated HPS ISIN, added ROADMAP.md
- **v0.1.2** — 2026-01-06 — Documentation cleanup, branding updates
- **v0.1.1** — 2026-01-06 — Remove demo videos, update branding
- **v0.1.0** — Initial release

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

MIT License — see [LICENSE](LICENSE) for details.

## Contact

- GitHub: [QuantBender/casased](https://github.com/QuantBender/casased)
- Twitter: [@desire_dosseh](https://x.com/desire_dosseh)
- LinkedIn: [Désiré A. D.](https://www.linkedin.com/in/d%C3%A9sir%C3%A9-a-d-72b624110/)
