Skip to main content

Python wrapper for the Tarta API, designed to seamlessly integrate AI-powered job search functionality into your applications.

Project description

TartaAPI-Python

Overview

TartaAPI-Python is a Python wrapper for the Tarta API, designed to seamlessly integrate AI-powered job search functionality into your applications.

API Documentation

For detailed API documentation, visit:
Tarta API Documentation

What is Tarta?

Tarta.ai is a sophisticated AI platform that consolidates job listings from a wide range of sources, including job boards and social media. The platform streamlines the job search experience, matching users with suitable vacancies and even facilitating interview scheduling.

To learn more, visit:
Tarta Official Website

ChatGPT Integration

Tarta is also available as a ChatGPT plugin to enhance your job search experience:
Tarta ChatGPT Plugin

Installation

To install TartaAPI-Python via pip, use the following command:

pip install tarta-api

Usage Example

Here's a simple example demonstrating how to use the library to execute a job search:

from tarta_api.job_search import JobSearchService, JobSearchRequest

def search_jobs(title: str, size: int = 5):
    request = JobSearchRequest(title=title, size=size)
    
    try:
        results = JobSearchService.search_jobs(request)
        jobs = results.get("jobs", [])
        
        if not jobs:
            print("No job results found.")
            return
        
        print("Job Search Results:")
        for job in jobs:
            job_name = job.get("name", "N/A")
            company = job.get("companyName", "N/A")
            location = job.get("location", {})
            city = location.get("city", "Unknown")
            state = location.get("state", "Unknown")
            country = location.get("country", "Unknown")
            source = job.get("feed", "N/A")
            posted_date = job.get("created", "N/A")
            
            print(f"Job: {job_name} at {company}")
            print(f"Location: {city}, {state}, {country}")
            print(f"Source: {source}")
            print(f"Posted: {posted_date}\n")
    
    except Exception as e:
        print(f"Error fetching job results: {e}")

search_jobs("python", size=2)

Key Features

  • Effortless API Integration: Interact with Tarta's API using straightforward Python methods.
  • AI Matching: Utilize AI algorithms to find jobs that align with user profiles and preferences.
  • Interview Scheduling: Automate interview scheduling to streamline the application process.

Contributions

Contributions are welcome! Feel free to open issues or submit pull requests to enhance the library.

License

This project is under the MIT License.


Experience the efficiency of Tarta and integrate AI-powered job search into your Python applications today!

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

tarta_api-1.0.0.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

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

tarta_api-1.0.0-py3-none-any.whl (3.6 kB view details)

Uploaded Python 3

File details

Details for the file tarta_api-1.0.0.tar.gz.

File metadata

  • Download URL: tarta_api-1.0.0.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for tarta_api-1.0.0.tar.gz
Algorithm Hash digest
SHA256 f61276fb55d328cbe7c63d7230aab690dd8c780b0d8907529eda7869460431b3
MD5 38595d88eca64d50b3f2dd7ab3bb461e
BLAKE2b-256 7c20d28537bb6c1289866e360ad3906829f046160d113d9ce40e5e097680fd1b

See more details on using hashes here.

File details

Details for the file tarta_api-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: tarta_api-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 3.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for tarta_api-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cd1e7a0942fa083390be5236d4b711225ca31d7e9fedf9388222ae4613b3fd6c
MD5 0b2fdd253b1b27b6d514f1a940d3287c
BLAKE2b-256 09c9b581806b3e067b1fb7c3fba74219b286aec2830e009146c4973315f27fed

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