cvprocessor


Namecvprocessor JSON
Version 1.0.7 PyPI version JSON
download
home_pageNone
SummaryCVProcessor is a Python library for processing CV (Curriculum Vitae) or resume documents.
upload_time2024-09-17 01:48:35
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords cv curriculum vitae resume xslx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            **Warning**: This is under development, some features may not work as expected.

# CVProcessor

CVProcessor is a Python library for processing CV (Curriculum Vitae) or resume documents. It provides a set of functions and utilities to extract information from CVs, such as personal details, education, work experience, skills, and more.

## Features

- Extract personal details from CVs, including name, contact information, and address.
- Parse education details, including degrees, institutions, and dates.
- Extract work experience information, including job titles, companies, and dates.
- Identify and extract skills mentioned in CVs.
- Support for xlsx files.

## Installation

You can install CVProcessor using pip:

```bash
pip install cvprocessor
```

## Usage

Here's a simple example of how to use CVProcessor to extract personal details from a CV:

```python
from cvprocessor.cv import CV

# Load a CV file
cv_file = "cv.xlsx"
cv = CV(cv_file)

# print education details
print(cv.education)
# Print teaching experience
print(cv.teaching)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cvprocessor",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "CV, Curriculum Vitae, Resume, xslx",
    "author": null,
    "author_email": "\"F. Fernando Jurado-Lasso\" <fdo.jurado@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/60/84/1e44dd21f6f9b4d3ad91869d1b5716104d1122cafd31fe8920e5be573e28/cvprocessor-1.0.7.tar.gz",
    "platform": null,
    "description": "**Warning**: This is under development, some features may not work as expected.\n\n# CVProcessor\n\nCVProcessor is a Python library for processing CV (Curriculum Vitae) or resume documents. It provides a set of functions and utilities to extract information from CVs, such as personal details, education, work experience, skills, and more.\n\n## Features\n\n- Extract personal details from CVs, including name, contact information, and address.\n- Parse education details, including degrees, institutions, and dates.\n- Extract work experience information, including job titles, companies, and dates.\n- Identify and extract skills mentioned in CVs.\n- Support for xlsx files.\n\n## Installation\n\nYou can install CVProcessor using pip:\n\n```bash\npip install cvprocessor\n```\n\n## Usage\n\nHere's a simple example of how to use CVProcessor to extract personal details from a CV:\n\n```python\nfrom cvprocessor.cv import CV\n\n# Load a CV file\ncv_file = \"cv.xlsx\"\ncv = CV(cv_file)\n\n# print education details\nprint(cv.education)\n# Print teaching experience\nprint(cv.teaching)\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "CVProcessor is a Python library for processing CV (Curriculum Vitae) or resume documents.",
    "version": "1.0.7",
    "project_urls": {
        "Homepage": "https://github.com/fdojurado/CVProcessor",
        "Issues": "https://github.com/fdojurado/CVProcessor/issues"
    },
    "split_keywords": [
        "cv",
        " curriculum vitae",
        " resume",
        " xslx"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2b8e27ecbf20085ca9fb7a8fc6d5d8dce4a0b443480dd1f70f583f723351ddb",
                "md5": "e17c7289164a30695d4a97468ba0dfc2",
                "sha256": "e5ec262608a16a607f39ebb7fe206271d167b309cc61336a8e6bced3a83edef4"
            },
            "downloads": -1,
            "filename": "cvprocessor-1.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e17c7289164a30695d4a97468ba0dfc2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 27400,
            "upload_time": "2024-09-17T01:48:33",
            "upload_time_iso_8601": "2024-09-17T01:48:33.647655Z",
            "url": "https://files.pythonhosted.org/packages/e2/b8/e27ecbf20085ca9fb7a8fc6d5d8dce4a0b443480dd1f70f583f723351ddb/cvprocessor-1.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60841e44dd21f6f9b4d3ad91869d1b5716104d1122cafd31fe8920e5be573e28",
                "md5": "3980e9a4b82e16db372c6d9e46dcfda0",
                "sha256": "d1f48181e4c3b0c43cda7020e5d8503d5cfc03ab65df46b9981ad47138d2d4b9"
            },
            "downloads": -1,
            "filename": "cvprocessor-1.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "3980e9a4b82e16db372c6d9e46dcfda0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 18580,
            "upload_time": "2024-09-17T01:48:35",
            "upload_time_iso_8601": "2024-09-17T01:48:35.177974Z",
            "url": "https://files.pythonhosted.org/packages/60/84/1e44dd21f6f9b4d3ad91869d1b5716104d1122cafd31fe8920e5be573e28/cvprocessor-1.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-17 01:48:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fdojurado",
    "github_project": "CVProcessor",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cvprocessor"
}
        
Elapsed time: 0.58481s