Skip to main content

This is a Python client that provides easy access to the MagicalAPI.com services, fully type annotated, and asynchronous.

Project description

PyPI - Version PyPI - Python Version Downloads

Tests Issues Stargazers MIT License


Logo

MagicalAPI Python SDK

MagicalAPI Python SDK lets developers integrate AI-powered resume parsing, resume scoring, resume matching, and LinkedIn public data extraction into Python applications. MagicalAPI.com
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.

What you can build

  • Resume parsing pipelines for HR platforms
  • Candidate scoring and job matching workflows
  • LinkedIn profile enrichment tools
  • Recruiting automation systems
  • ATS integrations

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.

Supported APIs

  • Resume Parser
  • Resume Checker(Review)
  • Resume Matcher(Score)
  • LinkedIn Profile Scraper
  • LinkedIn Company Scraper

About The Project

This is a Python client that provides easy access to the MagicalAPI.com services, fully type-annotated and asynchronous.

(back to top)

Getting Started

This is an example of how you can install the client and use it in your own scripts and projects.

Installation

Install the package using pip

pip install magicalapi

(back to top)

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

(back to top)

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!

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magicalapi-1.6.0.tar.gz (154.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

magicalapi-1.6.0-py3-none-any.whl (22.2 kB view details)

Uploaded Python 3

File details

Details for the file magicalapi-1.6.0.tar.gz.

File metadata

  • Download URL: magicalapi-1.6.0.tar.gz
  • Upload date:
  • Size: 154.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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

Hashes for magicalapi-1.6.0.tar.gz
Algorithm Hash digest
SHA256 d49ab831057a0f4298ed3d8ada0fb23c33f2a574ef012f4da98db9b8cf3b149b
MD5 7533780854347615e07a4dbc60f1c02c
BLAKE2b-256 31c37c4163626fee831aa0190acdfeb045324042b20370475218f65ed9aa426a

See more details on using hashes here.

File details

Details for the file magicalapi-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: magicalapi-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 22.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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

Hashes for magicalapi-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d903a043484f160820fcc454e184185642bbd8c60d1e19c28558efc760be1621
MD5 eebb56836c51900862363be60f46702d
BLAKE2b-256 9af75d59448750626d1e9fd00f0f0d13ac3ec5b612cbae8f08b96a5f263c3a55

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page