Skip to content

Latest commit

 

History

History
72 lines (47 loc) · 2.23 KB

README.md

File metadata and controls

72 lines (47 loc) · 2.23 KB

Siwar API

PyPI version Python Package License: MIT

A Python wrapper for the Siwar Arabic Lexicon API (siwar.ksaa.gov.sa). This library provides easy access to Arabic lexical data, word meanings, roots, patterns, and morphological information.

Installation

pip install siwar-api

Quick Start

from siwar import SiwarClient

# Initialize client
client = SiwarClient(api_key='your-api-key')

# Search public entries
results = client.search_public('محرك')

# Get lexicon information
lexicons = client.get_public_lexicons()

# Get word details
senses = client.get_entry_senses('محرك')
conjugations = client.get_entry_conjugations('محرك')

Features

  • Complete coverage of Siwar API endpoints
  • Support for both public and private lexicon access
  • Rich Arabic language processing utilities
  • Type hints for better IDE support
  • Comprehensive error handling
  • Detailed documentation

Documentation

For full documentation and examples, visit our GitHub Wiki.

Contributing

We welcome contributions! Please see our Contributing Guidelines for details.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Support

If you encounter any problems or have suggestions, please open an issue.