This is a Python client that provides easy access to the MagicalAPI.com services, fully type annotated, and asynchronous.
Project description
MagicalAPI Python Client
An Async and Type Annotated Python Client to Easy Access MagicalAPI.com Service.
Report Bug
·
Request Feature
Table of Contents
What is MagicalAPI?
MagicalAPI is your AI edge in careers and data insights, Your ultimate tool for Resume Parsing, LinkedIn data and more. It offers services like:
- Resume Parsing: Extract structured data from resumes.
- LinkedIn Data Extraction: Scrape and analyze LinkedIn profiles.
- Career Insights: Gain AI-driven recommendations for career development.
Features
- Resume Parsing: Parse resumes to extract key information like skills, experience, and education.
- LinkedIn Profile Scraping: Extract data from LinkedIn profiles for analysis.
- Career Insights: Leverage AI to get actionable career recommendations.
- Type-Annotated and Async: Built for modern Python with type hints and asynchronous support.
About The Project
This is a Python client that provides easy access to the MagicalAPI.com services, fully type annotated, and asynchronous.
Getting Started
This is an example of how you can install the client and use it in your own scripts and projects.
Installation
Install package using pip
pip install magicalapi
Usage
here are some samples of how to use the client for each service.
At first, you have to create an object of AsyncClient like this:
from magicalapi.client import AsyncClient
API_KEY = "mag_123456"
client = AsyncClient(api_key=API_KEY)
You can pass the API_KEY on the code, or put it on a .env file and the client will read from there.
Config .env File
Example of using .env file, all settings start with the prefix MAG_ and are case insensitive, so MAG_EXAMPLE, Mag_example, and mag_EXAMPLE are equal.
# .env
MAG_API_KEY="mag_1234567"
So now you can leave api_key parameter empty.
from magicalapi.client import AsyncClient
client = AsyncClinet()
Using Webhooks (Optional)
For asynchronous response delivery, you can provide a webhook_url when initializing the client. The API will send the response to your webhook endpoint instead of using the polling mechanism.
from magicalapi.client import AsyncClient
# Your webhook must be whitelisted in MagicalAPI panel
webhook_url = "https://your-domain.com/webhook"
client = AsyncClient(webhook_url=webhook_url)
Important: Webhook domains must be registered in the MagicalAPI panel. For setup guide, see the webhook documentation and example.
Here is an example of how to parse a resume using Resume Parser service:
import asyncio
from magicalapi.client import AsyncClient
from magicalapi.errors import APIServerError, APIServerTimedout
from magicalapi.types.base import ErrorResponse
resume_url = (
"https://resume-resource.com/wp-content/uploads/00123-sales-professional-resume.pdf"
)
output_file_name = "resume_parser.json"
async def main():
try:
# the api_key will load from the .env file
async with AsyncClient() as client:
response = await client.resume_parser.get_resume_parser(url=resume_url)
if isinstance(response, ErrorResponse):
# got error from api
print("Error :", response.message)
else:
# got response successfully
print("credists :", response.usage.credits)
# save response in json file
with open(output_file_name, "w") as file:
file.write(response.model_dump_json(indent=3))
print(f"response saved to {output_file_name}")
except (APIServerError, APIServerTimedout) as e:
# handling server errors
print(e)
except Exception as e:
print("An error occurred:", str(e))
asyncio.run(main())
All of the methods in the client have type hints and help to simply use.
For full examples, please see the Examples Directory
Contributing
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
Here is the Contributing Guidelines. Don't forget to give the project a star! Thanks again!
License
Distributed under the MIT License. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file magicalapi-1.5.0.tar.gz.
File metadata
- Download URL: magicalapi-1.5.0.tar.gz
- Upload date:
- Size: 131.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee6fb463920378e8853d6ce2af4b28cb7f8b448acace2b4d408ecc794e7f904f
|
|
| MD5 |
f817c9da955657265f6c4df25b32d722
|
|
| BLAKE2b-256 |
4f799facdbf42517c1123f86400ebf53568cbff00d065d9003c2e17e95f61f86
|
File details
Details for the file magicalapi-1.5.0-py3-none-any.whl.
File metadata
- Download URL: magicalapi-1.5.0-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25369c404604f66b678091e6279a313ff69edc4ab830febdf246addee342125a
|
|
| MD5 |
ccd2640a1fd44c586dcf6506b5acac5a
|
|
| BLAKE2b-256 |
943b39535a6077136f0dbc5b95e991c9105ccd098b9db40acd3fe711cac85148
|