|
| 1 | +# SharpAPI Python Client SDK |
| 2 | + |
| 3 | +🚀 Automate workflows with AI-powered API |
| 4 | + |
| 5 | +## Leverage AI API to streamline workflows in E-Commerce, Marketing, Content Management, HR Tech, Travel, and more. |
| 6 | + |
| 7 | +[](https://pypi.org/project/sharpapi-python-client/) |
| 8 | +[](https://github.com/yourusername/sharpapi-python-client/blob/main/LICENSE) |
| 9 | + |
| 10 | +#### Save time on repetitive content analysis and generation tasks that your app users perform daily. |
| 11 | + |
| 12 | +See more at [SharpAPI.com Website »](https://sharpapi.com/) |
| 13 | + |
| 14 | +## Requirements |
| 15 | + |
| 16 | +- Python >= 3.6 |
| 17 | + |
| 18 | + |
| 19 | +## Installation |
| 20 | + |
| 21 | +```bash |
| 22 | +pip install sharpapi-python-client |
| 23 | + |
| 24 | + |
| 25 | +## What can it do for you? |
| 26 | + |
| 27 | +- **E-commerce** |
| 28 | + - Generate engaging product introductions. |
| 29 | + - Create personalized thank-you emails. |
| 30 | + - Streamline product categorization. |
| 31 | + - Perform sentiment analysis on product reviews. |
| 32 | + |
| 33 | +- **Content & Marketing Automation** |
| 34 | + - Translate text for a global audience. |
| 35 | + - Paraphrase and proofread any text. |
| 36 | + - Detect spam content. |
| 37 | + - Extract contact information. |
| 38 | + - Summarize content and generate keywords/tags. |
| 39 | + - Generate SEO meta tags. |
| 40 | + |
| 41 | +- **HR Tech** |
| 42 | + - Generate job descriptions. |
| 43 | + - Identify related job positions and skills. |
| 44 | + - Parse and extract information from resumes. |
| 45 | + |
| 46 | +- **Travel, Tourism & Hospitality** |
| 47 | + - Analyze sentiment in travel reviews. |
| 48 | + - Categorize tours, activities, and hospitality products. |
| 49 | + |
| 50 | +## Usage |
| 51 | + |
| 52 | +### Simple Example |
| 53 | + |
| 54 | +```python |
| 55 | +from sharpapi.sharp_api_service import SharpApiService |
| 56 | +
|
| 57 | +sharp_api = SharpApiService('YOUR_SHARP_API_KEY') |
| 58 | +
|
| 59 | +try: |
| 60 | + status_url = sharp_api.product_categories( |
| 61 | + 'Lenovo Chromebook Laptop (2023), 14" FHD Touchscreen Slim 3, 8-Core MediaTek Kompanio 520 CPU, 4GB RAM, 128GB Storage', |
| 62 | + language='German', # optional |
| 63 | + max_quantity=400, # optional |
| 64 | + voice_tone='Neutral', # optional |
| 65 | + context='Optional current e-store categories' # optional |
| 66 | + ) |
| 67 | +
|
| 68 | + result_sharp_api_job = sharp_api.fetch_results(status_url) |
| 69 | + print(result_sharp_api_job.get_result_json()) |
| 70 | +except Exception as e: |
| 71 | + print(e) |
| 72 | +``` |
| 73 | + |
| 74 | +## Documentation |
| 75 | +For detailed usage and API methods, please refer to the [SharpAPI Documentation](https://sharpapi.com/documentation). |
| 76 | + |
| 77 | +## Changelog |
| 78 | +Please see CHANGELOG for more information on what has changed recently. |
| 79 | + |
| 80 | +## License |
| 81 | +The MIT License (MIT). Please see License File for more information. |
0 commit comments