taxonomy-connector


Nametaxonomy-connector JSON
Version 1.50.0 PyPI version JSON
download
home_pagehttps://github.com/openedx/taxonomy-connector
SummaryTaxonomy connector
upload_time2024-03-27 07:11:47
maintainerNone
docs_urlNone
authoredX
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            Taxonomy
========

.. image:: https://img.shields.io/pypi/v/taxonomy-connector.svg
    :target: https://pypi.org/project/taxonomy-connector/
    :alt: PyPI

.. image:: http://codecov.io/github/openedx/taxonomy-connector/coverage.svg?branch=master
    :target: http://codecov.io/github/openedx/taxonomy-connector?branch=master
    :alt: Codecov
    
.. image:: https://github.com/openedx/taxonomy-connector/workflows/Python%20CI/badge.svg?branch=master
    :target: https://github.com/openedx/taxonomy-connector/actions?query=workflow%3A%22Python+CI%22
    :alt: CI

The taxonomy service is a library that can be installed in other edX components
that provides access to third party taxonomy vendors. EMSI is currently the
only vendor available, but others may be integrated as necessary. This service
can communicate with the vendor to get job, skill, and salary data. This service
can also be used to submit data (course descriptions, etc.) to the vendor to
produce potential matches for a skill or job.

After submitting a pull request, please use the Github "Reviewers" widget to add
relevant reviewers and track review process.


Getting Started
---------------

To install ``taxonomy-connector``, for example, in Course Discovery, follow these steps:

#. It is recommended that you clone this repo into a sub-folder of your working directory. Create a sub-folder with name ``src`` if it doesn't already exist.
#. Clone this repository into the ``src`` folder.
#. Go to the shell of the host environment where you want to install this package and run this ``pip install -e /edx/src/taxonomy-connector``
#. Changes made into the taxonomy repository will now be picked up by your host environment.


Notes:

- In order to communicate with EMSI service, you need to set the values of ``client_id`` and ``client_secret``. These values are picked up from the host environment so you need to pass them in ``.yaml`` file of the host environment.
- Also, to make taxonomy work, the host platform must add an implementation of data providers written in ``./taxonomy/providers``
- Taxonomy APIs use throttle rate set in ``DEFAULT_THROTTLE_RATES`` settings by default. Custom Throttle rate can by set by adding ``ScopedRateThrottle`` class in ``DEFAULT_THROTTLE_CLASSES`` settings and ``taxonomy-api-throttle-scope`` key in ``DEFAULT_THROTTLE_RATES``
- For the skill tags to be verified, the management command ``finalize_xblockskill_tags`` needs to be run periodically.
- Also, You can configure the skill tags verification by setting the values of ``SKILLS_VERIFICATION_THRESHOLD``, ``SKILLS_VERIFICATION_RATIO_THRESHOLD``, ``SKILLS_IGNORED_THRESHOLD`` and ``SKILLS_IGNORED_RATIO_THRESHOLD`` in the host platform or by passing the values to the command using the args ``--min-verified-votes``, ``--ratio-verified-threshold``, ``--min-ignored-votes`` and ``--ratio-ignored-threshold``.


.. code-block:: python

    REST_FRAMEWORK = {
        'DEFAULT_THROTTLE_CLASSES': (
            'rest_framework.throttling.UserRateThrottle',
            'rest_framework.throttling.ScopedRateThrottle'
        ),
        'DEFAULT_THROTTLE_RATES': {
            'user': '100/hour',
            'taxonomy-api-throttle-scope': '60/min',  # custom throttle rate for taxonomy api
        },
    }


Developer Notes
~~~~~~~~~~~~~~~

- To run unit tests, create a virtualenv, install the requirements with ``make requirements`` and then run ``make test``
- To update the requirements, run ``make upgrade``
- To run quality checks, run ``make quality``
- Please do not import models directly in course discovery. e:g if you want to import CourseSkills in Discovery, use the utility get_whitelisted_course_skills instead of directly importing it.


Reporting Security Issues
-------------------------

Please do not report security issues in public. Please email security@openedx.org.

Getting Help
------------

Have a question about this repository, or about Open edX in general?  Please
refer to this `list of resources`_ if you need any assistance.

.. _list of resources: https://open.edx.org/getting-help


Change Log
==========

..
   All enhancements and patches to edx-enterprise will be documented
   in this file.  It adheres to the structure of http://keepachangelog.com/ ,
   but in reStructuredText instead of Markdown (for ease of incorporation into
   Sphinx documentation and the PyPI description).

   This project adheres to Semantic Versioning (http://semver.org/).

.. There should always be an "Unreleased" section for changes pending release.

Unreleased

[1.50.0] - 2024-03-27
---------------------
* feat: Skill validation can be disbaled for a course or an organization

[1.46.2] - 2024-02-14
---------------------
* feat: Optimized finalize_xblockskill_tags command for memory via chunking

[1.46.1] - 2024-01-05
---------------------
* feat: Modify prefetch related to select related for whitelisted product skills.

[1.46.0] - 2023-10-23
---------------------
* feat: Removed direct usages of JobSkills and IndustryJobSkills objects in favour of whitelisted or blacklisted query sets.

[1.45.0] - 2023-10-13
---------------------
* feat: Added the ability to blacklist job-skill relationship.

[1.44.3] - 2023-09-20
---------------------
* perf: improve xblock skills api performance.

[1.44.2] - 2023-09-11
---------------------
* fix: chunked data at 50000 byte in EMSI client for xblock-skills job

[1.44.1] - 2023-08-25
---------------------
* feat: add prefetch related to the whitelisted product skills

[1.44.0] - 2023-08-09
---------------------
* feat: Added the ability to ignore unrelated jobs from being indexed on algolia.

[1.43.4] - 2023-08-02
---------------------
* fix: Added missing comma in algolia constants that was masking the b2c_opt_in attribute.

[1.43.3] - 2023-08-02
---------------------
* fix: Fixed some implementation issues in job recommendation logic.

[1.43.2] - 2023-08-01
---------------------
* perf: Further performance enhancements for the algolia index command.

[1.43.1] - 2023-07-31
---------------------
* perf: Performance enhancements in job recomendations calculation.

[1.43.0] - 2023-07-07
---------------------
* feat: reuse tags from similar product for xblock skills.
* fix: remove duplicates from xblocks skills api.
* refactor: update logic to mark course run complete in refresh_xblock_skills command.

[1.42.3] - 2023-07-14
---------------------
* perf: memory optimisation for job recommendations.

[1.42.2] - 2023-07-14
---------------------
* perf: pandas dataframe loading memory optimisation

[1.42.1] - 2023-07-06
---------------------
* fix: Use autocomplete field for selecting job in B2CJobAllowlist.

[1.42.0] - 2023-07-04
---------------------
* feat: Added a new field `job_sources` in job's algolia index.

[1.41.0] - 2023-06-14
---------------------
* feat: change B2C Job Allowlist to admin config.

[1.40.1] - 2023-06-06
---------------------
* feat: Added pagination in JobHolderUsernamesAPIView API.

[1.40.0] - 2023-06-02
---------------------
* feat: Added JobHolderUsernamesAPIView to fetch current job of learners by LMS.

[1.39.0] - 2023-05-09
---------------------
* feat: Added CourseRunMetadataProvider to fetch course run info.
* feat: Added CourseRunXBlockSkillsTracker model to track xblock tagging under courses.
* Switch from ``edx-sphinx-theme`` to ``sphinx-book-theme`` since the former is
  deprecated.  See https://github.com/openedx/edx-sphinx-theme/issues/184 for
  more details.

[1.38.1] - 2023-05-11
---------------------
* fix: Update the `attributesForFaceting` list to include the `b2c_opt_in` field

[1.38.0] - 2023-05-03
---------------------
* feat: Added a new attribute (`b2c_opt_in`) to the JobSerializer

[1.37.3] - 2023-05-03
---------------------
* feat: generate job description only if job has name and description is empty

[1.37.2] - 2023-04-27
---------------------
* feat: Generate ai based job descriptions

[1.37.1] - 2023-03-31
---------------------
* feat: making sub_category skills to job specific in career tab.

[1.37.0] - 2023-03-31
---------------------
* Added the ability to remove unused jobs from django admin.

[1.36.3] - 2023-03-29
---------------------
* fix: Do not create a job if all of the releated skills does not exist in database

[1.36.2] - 2023-03-08
---------------------
* fix: remove validations on skills in skill quiz

[1.36.1] - 2023-02-23
---------------------
* Index industry data with skills in Algolia.

[1.36.0] - 2023-02-20
---------------------
* Added handler for openedx-events: XBLOCK_SKILL_VERIFIED.

[1.35.1] - 2023-02-10
---------------------
* Enabled ordering in SkillsQuizViewSet.

[1.35.0] - 2023-02-07
---------------------
* Added logic to avoid 429 errors and handle these errors if they still appear while communicating with LightCast API.

[1.34.0] - 2023-01-10
---------------------
* Added similar jobs list in jobs algolia jobs index.

[1.33.0] - 2023-01-09
---------------------
* https://github.com/openedx/openedx-events/pull/143 merged, so adding back
  changes reverted in version 1.32.1
* Added refresh_xblock_skills command to update skills for xblocks.
* Added handlers for openedx-events: XBLOCK_DELETED, XBLOCK_PUBLISHED and XBLOCK_PUBLISHED.
* Added finalize_xblockskill_tags to mark skills as verified or blacklisted.

[1.32.3] - 2023-01-05
---------------------
* Added log for EMSI client access token and raising error for error status.

[1.32.2] - 2023-01-02
---------------------
* updated requirements.

[1.32.1] - 2022-12-20
---------------------
* Reverts changes depending on openedx-events till upstream MR is merged.
  https://github.com/openedx/openedx-events/pull/143

[1.32.0] - 2022-12-20
---------------------
* Added refresh_xblock_skills command to update skills for xblocks.

[1.31.2] - 2022-12-23
---------------------
* Added ACCESS_TOKEN_EXPIRY_THRESHOLD_IN_SECONDS in EMSI client.

[1.31.1] - 2022-12-19
---------------------
* Handle repeating industry names in algolia index and test

[1.31.0] - 2022-12-06
---------------------
* Added handlers for openedx-events: XBLOCK_DELETED, XBLOCK_PUBLISHED and XBLOCK_PUBLISHED.

[1.30.1] - 2022-12-06
---------------------
* Added xblocks to skill API.
* Added xblocks API.

[1.30.0] - 2022-12-06
---------------------
* Added industry_names facet in Algolia Jobs Index.

[1.29.0] - 2022-11-28
---------------------
* Added XBlockSkills and XBlockSkillData models.
* Added related celery tasks, abstract provider, signals and commands.
* Added management command to verify xblockskill tags.

[1.28.2] - 2022-11-23
---------------------
* Added industry_names field in Algolia serializer.

[1.28.1] - 2022-11-22
---------------------
* Added JobHolderUsernamesAPIView which returns a list of 100 usernames from SkillsQuiz.

[1.28.0] - 2022-11-21
---------------------
* Updated refresh_job_skills command to save industry relation with job and skills.

[1.27.0] - 2022-10-31
---------------------
* Removed industry foreign key from JobSkills table and create a new table IndustryJobSkill.

[1.26.0] - 2022-10-31
---------------------
* Added relation between JobSkill and Industry Table.

[1.25.0] - 2022-10-24
---------------------
* Added JobTopSkillCategoriesAPIView.

[1.24.0] - 2022-10-21
---------------------
* Added a new model to store industry data using NAICS2 codes.

[1.23.1] - 2022-10-13
---------------------
* Do no concatenate if `short_description is `None`.
* Fix CourseSkills update_or_create call.

[1.23.0] - 2022-10-05
---------------------
* Expand course skills tagging to include `title`, `short_description` and `full_description`.

[1.22.5] - 2022-09-16
---------------------
* Fixes product type issue by using ProductTypes choices.

[1.22.4] - 2022-09-14
---------------------
* Updated utils to support program skills.

[1.22.3] - 2022-09-07
---------------------
* Added support to filter Skills by names.

[1.22.2] - 2022-09-06
---------------------
* Register Program associated models on Admin.
* Change verbose name for RefreshProgramSkillsConfig model

[1.22.1] - 2022-08-26
---------------------
* Added id field in JobSerializer for Algolia.

[1.22.0] - 2022-08-22
---------------------
* Added a new model for storing user response for skills quiz.
* Added new REST endpoints for performing CRUD operations on skills quiz.

[1.21.0] - 2022-08-16
---------------------
* feat: add task to update program skills through EMSI api

[1.20.0] - 2022-08-11
---------------------
* feat: add caching to ``utils.get_whitelisted_serialized_skills()``

[1.19.0] - 2022-08-04
---------------------
* feat: add provider and validator for Programs

[1.18.0] - 2022-08-01
---------------------
* feat: add program skill model
* feat: Update SkillSerializer to include Category and Subcategory details.

[1.17.1] - 2022-07-29
---------------------

* feat: use program update signal to call EMSI API

[1.17.0] - 2022-07-15
---------------------

* refactor: Remove EdxRestApiClient usage in taxonomy-connector

[1.16.3] - 2022-06-23
---------------------

* Added handling for None values for median salary from EMSI.

[1.16.2] - 2022-06-22
---------------------

* Fixed error causes by null values returned by EMSI API.

[1.16.1] - 2022-06-15
---------------------

* Fixed API 429 error and updated admin list display for skills for better usability.

[1.16.0] - 2022-06-08
---------------------

* Added category and subcategory for skill.

[1.15.4] - 2022-04-06
---------------------

* fix: Add limit to EMSI API calls

[1.15.3] - 2022-03-11
---------------------

* fix: Check the course description length after encoding

[1.15.2] - 2022-02-18
---------------------

* feat: Added Support for large size course description translation

[1.15.1] - 2022-02-17
---------------------

* fix: Made the median_posting_duration in JobPosting Nullable to avoid errors on jenkins.

[1.15.0] - 2022-02-11
---------------------

* chore: Removed Django22, 30 and 31 support and added support for Django40

[1.14.5] - 2022-02-08
---------------------

* feat: Added Support for course description translation

[1.14.4] - 2022-01-28
---------------------

* feat: Add Translation model

[1.14.3] - 2021-10-27
---------------------

* fix: Make job names unique and handle exception where ever job is created/updated

[1.14.2] - 2021-09-08
---------------------

* Fixed an issue that was causing an error while index jobs data to algolia.

[1.14.1] - 2021-08-20
---------------------

* Decreased skills query chunk_size from 2000 to 50 to fetch more jobs.

[1.14.0] - 2021-08-16
---------------------

* Added managment command and related code to index jobs data to algolia.

[1.13.0] - 2021-08-9
---------------------

* Added Skill, Job and JobPostings viewsets.

[1.12.2] - 2021-08-5
---------------------

* Add job posting information in utility method `get_course_jobs`.

[1.12.1] - 2021-08-3
---------------------

* Add utility method `get_course_jobs` to return job associated with a course.

[1.12.0] - 2021-07-13
---------------------

* Added support for django 3.1 and 3.2

[1.11.2] - 2021-05-28
---------------------

* Added utility method to return serialized course skills.

[1.11.1] - 2021-04-20
---------------------

* Fixed .rst issues in CHANGELOG.rst

[1.11.0] - 2021-04-16
---------------------

* Mention currency in median salary field and add verbose name for models.

[1.10.0] - 2021-04-12
---------------------

* Remove all the usages of old `course_id` field including the column definition in `CourseSkills` model.

[1.9.0] - 2021-04-12
--------------------

* Replace the usages of old `course_id` in `CourseSkills` with the new `course_key` field.

[1.8.0] - 2021-04-09
--------------------

* Added a new field named `course_key` in `CourseSkills` model to deprecate and replace the old `course_id` field in future.

[1.7.0] - 2021-04-07
--------------------

* Removed RefreshCourseSkill view.

[1.6.2] - 2021-03-12
--------------------

* Handled edge cases in `refresh_course_skills` command.

[1.6.1] - 2021-03-10
--------------------

* Updated logging structure for `refresh_course_skills` command.

[1.6.0] - 2021-03-09
--------------------

* Added support for --all param in `refresh_course_skills` command to back populate data.

[1.5.0] - 2021-03-04
--------------------

* Added `populate_job_names` command.

[1.4.1] - 2021-02-19
--------------------

*  Added description field in Skill model and update the refresh_course_skill command to save skill description.
*  Pinning EMSI skills API version to 7.35

[1.4.0] - 2021-02-17
--------------------

* Updated refresh_job_skill command to get jobs related only to skills that are in our system
* Updated refresh_job_postings command to get job_posting only related to job we already have in our system.
* Added constrains on the Job, Skill, JobPostings, CourseSkill and JobSkill table.
* Added migration to remove all previous taxonomy data.
* Added utility to chuck the queryset provided.

[1.3.6] - 2021-01-29
--------------------

* Remove caching from EMSI API client.

[1.3.5] - 2021-01-27
--------------------

* Added some utility functions for adding/removing course skills to/from blacklist.

[1.3.4] - 2021-01-27
--------------------

* More logging.

[1.3.3] - 2021-01-26
--------------------

* Improve logging.

[1.3.2] - 2021-01-25
--------------------

* Added logs for signals and tasks.

[1.3.1] - 2021-01-22
--------------------

* Added the ability to black list course skills.

[1.3.0] - 2021-01-13
--------------------

* Added JobSkills.skill column and removed JobSkills.name column.

[1.2.1] - 2021-01-07
--------------------

* Added course update signal and handler to trigger the celery task
* Added celery task to update course skills
* Refactored `refresh_course_skills` management command

[1.2.0] - 2020-12-24
--------------------

* Fixed TypeError that pops up sometimes while communicating with the EMSI API.

[1.1.6] - 2020-12-24
--------------------

* Updated the README description.

[1.1.5] - 2020-12-18
--------------------

* Fixed travis issue related to PyPI upload.

[1.1.4] - 2020-12-17
--------------------

* Fixed the bug where EMSI API was returning 404 for job posting data.

[1.1.3] - 2020-11-05
--------------------

* Updating travis configuration.

[1.1.2] - 2020-10-20
--------------------

* Updating jobs-salary data's query.

[1.1.1] - 2020-10-20
--------------------

* Updating skills-jobs data's query.

[1.1.0] - 2020-09-30
--------------------

* Renamed main package name from taxonomy-service to taxonomy-connector.

[1.0.1] - 2020-09-21
--------------------

* Added package data, so that migrations and python packages are included in the final build.

[1.0.0] - 2020-09-09
--------------------

* Added Providers and Validators for integrations and upgraded to the first stable release.

[0.1.1] - 2020-09-09
--------------------

* Enable Travis integration

[0.1.0] - 2020-08-27
--------------------

* Added Basic skeleton and clients to call EMSI endpoint.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/openedx/taxonomy-connector",
    "name": "taxonomy-connector",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "edX",
    "author_email": "oscm@edx.org",
    "download_url": "https://files.pythonhosted.org/packages/f8/0c/c14108aaaf69197bb9d3261a7049849d3bfb92f4e675febecb8aec9ae8da/taxonomy-connector-1.50.0.tar.gz",
    "platform": null,
    "description": "Taxonomy\n========\n\n.. image:: https://img.shields.io/pypi/v/taxonomy-connector.svg\n    :target: https://pypi.org/project/taxonomy-connector/\n    :alt: PyPI\n\n.. image:: http://codecov.io/github/openedx/taxonomy-connector/coverage.svg?branch=master\n    :target: http://codecov.io/github/openedx/taxonomy-connector?branch=master\n    :alt: Codecov\n    \n.. image:: https://github.com/openedx/taxonomy-connector/workflows/Python%20CI/badge.svg?branch=master\n    :target: https://github.com/openedx/taxonomy-connector/actions?query=workflow%3A%22Python+CI%22\n    :alt: CI\n\nThe taxonomy service is a library that can be installed in other edX components\nthat provides access to third party taxonomy vendors. EMSI is currently the\nonly vendor available, but others may be integrated as necessary. This service\ncan communicate with the vendor to get job, skill, and salary data. This service\ncan also be used to submit data (course descriptions, etc.) to the vendor to\nproduce potential matches for a skill or job.\n\nAfter submitting a pull request, please use the Github \"Reviewers\" widget to add\nrelevant reviewers and track review process.\n\n\nGetting Started\n---------------\n\nTo install ``taxonomy-connector``, for example, in Course Discovery, follow these steps:\n\n#. It is recommended that you clone this repo into a sub-folder of your working directory. Create a sub-folder with name ``src`` if it doesn't already exist.\n#. Clone this repository into the ``src`` folder.\n#. Go to the shell of the host environment where you want to install this package and run this ``pip install -e /edx/src/taxonomy-connector``\n#. Changes made into the taxonomy repository will now be picked up by your host environment.\n\n\nNotes:\n\n- In order to communicate with EMSI service, you need to set the values of ``client_id`` and ``client_secret``. These values are picked up from the host environment so you need to pass them in ``.yaml`` file of the host environment.\n- Also, to make taxonomy work, the host platform must add an implementation of data providers written in ``./taxonomy/providers``\n- Taxonomy APIs use throttle rate set in ``DEFAULT_THROTTLE_RATES`` settings by default. Custom Throttle rate can by set by adding ``ScopedRateThrottle`` class in ``DEFAULT_THROTTLE_CLASSES`` settings and ``taxonomy-api-throttle-scope`` key in ``DEFAULT_THROTTLE_RATES``\n- For the skill tags to be verified, the management command ``finalize_xblockskill_tags`` needs to be run periodically.\n- Also, You can configure the skill tags verification by setting the values of ``SKILLS_VERIFICATION_THRESHOLD``, ``SKILLS_VERIFICATION_RATIO_THRESHOLD``, ``SKILLS_IGNORED_THRESHOLD`` and ``SKILLS_IGNORED_RATIO_THRESHOLD`` in the host platform or by passing the values to the command using the args ``--min-verified-votes``, ``--ratio-verified-threshold``, ``--min-ignored-votes`` and ``--ratio-ignored-threshold``.\n\n\n.. code-block:: python\n\n    REST_FRAMEWORK = {\n        'DEFAULT_THROTTLE_CLASSES': (\n            'rest_framework.throttling.UserRateThrottle',\n            'rest_framework.throttling.ScopedRateThrottle'\n        ),\n        'DEFAULT_THROTTLE_RATES': {\n            'user': '100/hour',\n            'taxonomy-api-throttle-scope': '60/min',  # custom throttle rate for taxonomy api\n        },\n    }\n\n\nDeveloper Notes\n~~~~~~~~~~~~~~~\n\n- To run unit tests, create a virtualenv, install the requirements with ``make requirements`` and then run ``make test``\n- To update the requirements, run ``make upgrade``\n- To run quality checks, run ``make quality``\n- Please do not import models directly in course discovery. e:g if you want to import CourseSkills in Discovery, use the utility get_whitelisted_course_skills instead of directly importing it.\n\n\nReporting Security Issues\n-------------------------\n\nPlease do not report security issues in public. Please email security@openedx.org.\n\nGetting Help\n------------\n\nHave a question about this repository, or about Open edX in general?  Please\nrefer to this `list of resources`_ if you need any assistance.\n\n.. _list of resources: https://open.edx.org/getting-help\n\n\nChange Log\n==========\n\n..\n   All enhancements and patches to edx-enterprise will be documented\n   in this file.  It adheres to the structure of http://keepachangelog.com/ ,\n   but in reStructuredText instead of Markdown (for ease of incorporation into\n   Sphinx documentation and the PyPI description).\n\n   This project adheres to Semantic Versioning (http://semver.org/).\n\n.. There should always be an \"Unreleased\" section for changes pending release.\n\nUnreleased\n\n[1.50.0] - 2024-03-27\n---------------------\n* feat: Skill validation can be disbaled for a course or an organization\n\n[1.46.2] - 2024-02-14\n---------------------\n* feat: Optimized finalize_xblockskill_tags command for memory via chunking\n\n[1.46.1] - 2024-01-05\n---------------------\n* feat: Modify prefetch related to select related for whitelisted product skills.\n\n[1.46.0] - 2023-10-23\n---------------------\n* feat: Removed direct usages of JobSkills and IndustryJobSkills objects in favour of whitelisted or blacklisted query sets.\n\n[1.45.0] - 2023-10-13\n---------------------\n* feat: Added the ability to blacklist job-skill relationship.\n\n[1.44.3] - 2023-09-20\n---------------------\n* perf: improve xblock skills api performance.\n\n[1.44.2] - 2023-09-11\n---------------------\n* fix: chunked data at 50000 byte in EMSI client for xblock-skills job\n\n[1.44.1] - 2023-08-25\n---------------------\n* feat: add prefetch related to the whitelisted product skills\n\n[1.44.0] - 2023-08-09\n---------------------\n* feat: Added the ability to ignore unrelated jobs from being indexed on algolia.\n\n[1.43.4] - 2023-08-02\n---------------------\n* fix: Added missing comma in algolia constants that was masking the b2c_opt_in attribute.\n\n[1.43.3] - 2023-08-02\n---------------------\n* fix: Fixed some implementation issues in job recommendation logic.\n\n[1.43.2] - 2023-08-01\n---------------------\n* perf: Further performance enhancements for the algolia index command.\n\n[1.43.1] - 2023-07-31\n---------------------\n* perf: Performance enhancements in job recomendations calculation.\n\n[1.43.0] - 2023-07-07\n---------------------\n* feat: reuse tags from similar product for xblock skills.\n* fix: remove duplicates from xblocks skills api.\n* refactor: update logic to mark course run complete in refresh_xblock_skills command.\n\n[1.42.3] - 2023-07-14\n---------------------\n* perf: memory optimisation for job recommendations.\n\n[1.42.2] - 2023-07-14\n---------------------\n* perf: pandas dataframe loading memory optimisation\n\n[1.42.1] - 2023-07-06\n---------------------\n* fix: Use autocomplete field for selecting job in B2CJobAllowlist.\n\n[1.42.0] - 2023-07-04\n---------------------\n* feat: Added a new field `job_sources` in job's algolia index.\n\n[1.41.0] - 2023-06-14\n---------------------\n* feat: change B2C Job Allowlist to admin config.\n\n[1.40.1] - 2023-06-06\n---------------------\n* feat: Added pagination in JobHolderUsernamesAPIView API.\n\n[1.40.0] - 2023-06-02\n---------------------\n* feat: Added JobHolderUsernamesAPIView to fetch current job of learners by LMS.\n\n[1.39.0] - 2023-05-09\n---------------------\n* feat: Added CourseRunMetadataProvider to fetch course run info.\n* feat: Added CourseRunXBlockSkillsTracker model to track xblock tagging under courses.\n* Switch from ``edx-sphinx-theme`` to ``sphinx-book-theme`` since the former is\n  deprecated.  See https://github.com/openedx/edx-sphinx-theme/issues/184 for\n  more details.\n\n[1.38.1] - 2023-05-11\n---------------------\n* fix: Update the `attributesForFaceting` list to include the `b2c_opt_in` field\n\n[1.38.0] - 2023-05-03\n---------------------\n* feat: Added a new attribute (`b2c_opt_in`) to the JobSerializer\n\n[1.37.3] - 2023-05-03\n---------------------\n* feat: generate job description only if job has name and description is empty\n\n[1.37.2] - 2023-04-27\n---------------------\n* feat: Generate ai based job descriptions\n\n[1.37.1] - 2023-03-31\n---------------------\n* feat: making sub_category skills to job specific in career tab.\n\n[1.37.0] - 2023-03-31\n---------------------\n* Added the ability to remove unused jobs from django admin.\n\n[1.36.3] - 2023-03-29\n---------------------\n* fix: Do not create a job if all of the releated skills does not exist in database\n\n[1.36.2] - 2023-03-08\n---------------------\n* fix: remove validations on skills in skill quiz\n\n[1.36.1] - 2023-02-23\n---------------------\n* Index industry data with skills in Algolia.\n\n[1.36.0] - 2023-02-20\n---------------------\n* Added handler for openedx-events: XBLOCK_SKILL_VERIFIED.\n\n[1.35.1] - 2023-02-10\n---------------------\n* Enabled ordering in SkillsQuizViewSet.\n\n[1.35.0] - 2023-02-07\n---------------------\n* Added logic to avoid 429 errors and handle these errors if they still appear while communicating with LightCast API.\n\n[1.34.0] - 2023-01-10\n---------------------\n* Added similar jobs list in jobs algolia jobs index.\n\n[1.33.0] - 2023-01-09\n---------------------\n* https://github.com/openedx/openedx-events/pull/143 merged, so adding back\n  changes reverted in version 1.32.1\n* Added refresh_xblock_skills command to update skills for xblocks.\n* Added handlers for openedx-events: XBLOCK_DELETED, XBLOCK_PUBLISHED and XBLOCK_PUBLISHED.\n* Added finalize_xblockskill_tags to mark skills as verified or blacklisted.\n\n[1.32.3] - 2023-01-05\n---------------------\n* Added log for EMSI client access token and raising error for error status.\n\n[1.32.2] - 2023-01-02\n---------------------\n* updated requirements.\n\n[1.32.1] - 2022-12-20\n---------------------\n* Reverts changes depending on openedx-events till upstream MR is merged.\n  https://github.com/openedx/openedx-events/pull/143\n\n[1.32.0] - 2022-12-20\n---------------------\n* Added refresh_xblock_skills command to update skills for xblocks.\n\n[1.31.2] - 2022-12-23\n---------------------\n* Added ACCESS_TOKEN_EXPIRY_THRESHOLD_IN_SECONDS in EMSI client.\n\n[1.31.1] - 2022-12-19\n---------------------\n* Handle repeating industry names in algolia index and test\n\n[1.31.0] - 2022-12-06\n---------------------\n* Added handlers for openedx-events: XBLOCK_DELETED, XBLOCK_PUBLISHED and XBLOCK_PUBLISHED.\n\n[1.30.1] - 2022-12-06\n---------------------\n* Added xblocks to skill API.\n* Added xblocks API.\n\n[1.30.0] - 2022-12-06\n---------------------\n* Added industry_names facet in Algolia Jobs Index.\n\n[1.29.0] - 2022-11-28\n---------------------\n* Added XBlockSkills and XBlockSkillData models.\n* Added related celery tasks, abstract provider, signals and commands.\n* Added management command to verify xblockskill tags.\n\n[1.28.2] - 2022-11-23\n---------------------\n* Added industry_names field in Algolia serializer.\n\n[1.28.1] - 2022-11-22\n---------------------\n* Added JobHolderUsernamesAPIView which returns a list of 100 usernames from SkillsQuiz.\n\n[1.28.0] - 2022-11-21\n---------------------\n* Updated refresh_job_skills command to save industry relation with job and skills.\n\n[1.27.0] - 2022-10-31\n---------------------\n* Removed industry foreign key from JobSkills table and create a new table IndustryJobSkill.\n\n[1.26.0] - 2022-10-31\n---------------------\n* Added relation between JobSkill and Industry Table.\n\n[1.25.0] - 2022-10-24\n---------------------\n* Added JobTopSkillCategoriesAPIView.\n\n[1.24.0] - 2022-10-21\n---------------------\n* Added a new model to store industry data using NAICS2 codes.\n\n[1.23.1] - 2022-10-13\n---------------------\n* Do no concatenate if `short_description is `None`.\n* Fix CourseSkills update_or_create call.\n\n[1.23.0] - 2022-10-05\n---------------------\n* Expand course skills tagging to include `title`, `short_description` and `full_description`.\n\n[1.22.5] - 2022-09-16\n---------------------\n* Fixes product type issue by using ProductTypes choices.\n\n[1.22.4] - 2022-09-14\n---------------------\n* Updated utils to support program skills.\n\n[1.22.3] - 2022-09-07\n---------------------\n* Added support to filter Skills by names.\n\n[1.22.2] - 2022-09-06\n---------------------\n* Register Program associated models on Admin.\n* Change verbose name for RefreshProgramSkillsConfig model\n\n[1.22.1] - 2022-08-26\n---------------------\n* Added id field in JobSerializer for Algolia.\n\n[1.22.0] - 2022-08-22\n---------------------\n* Added a new model for storing user response for skills quiz.\n* Added new REST endpoints for performing CRUD operations on skills quiz.\n\n[1.21.0] - 2022-08-16\n---------------------\n* feat: add task to update program skills through EMSI api\n\n[1.20.0] - 2022-08-11\n---------------------\n* feat: add caching to ``utils.get_whitelisted_serialized_skills()``\n\n[1.19.0] - 2022-08-04\n---------------------\n* feat: add provider and validator for Programs\n\n[1.18.0] - 2022-08-01\n---------------------\n* feat: add program skill model\n* feat: Update SkillSerializer to include Category and Subcategory details.\n\n[1.17.1] - 2022-07-29\n---------------------\n\n* feat: use program update signal to call EMSI API\n\n[1.17.0] - 2022-07-15\n---------------------\n\n* refactor: Remove EdxRestApiClient usage in taxonomy-connector\n\n[1.16.3] - 2022-06-23\n---------------------\n\n* Added handling for None values for median salary from EMSI.\n\n[1.16.2] - 2022-06-22\n---------------------\n\n* Fixed error causes by null values returned by EMSI API.\n\n[1.16.1] - 2022-06-15\n---------------------\n\n* Fixed API 429 error and updated admin list display for skills for better usability.\n\n[1.16.0] - 2022-06-08\n---------------------\n\n* Added category and subcategory for skill.\n\n[1.15.4] - 2022-04-06\n---------------------\n\n* fix: Add limit to EMSI API calls\n\n[1.15.3] - 2022-03-11\n---------------------\n\n* fix: Check the course description length after encoding\n\n[1.15.2] - 2022-02-18\n---------------------\n\n* feat: Added Support for large size course description translation\n\n[1.15.1] - 2022-02-17\n---------------------\n\n* fix: Made the median_posting_duration in JobPosting Nullable to avoid errors on jenkins.\n\n[1.15.0] - 2022-02-11\n---------------------\n\n* chore: Removed Django22, 30 and 31 support and added support for Django40\n\n[1.14.5] - 2022-02-08\n---------------------\n\n* feat: Added Support for course description translation\n\n[1.14.4] - 2022-01-28\n---------------------\n\n* feat: Add Translation model\n\n[1.14.3] - 2021-10-27\n---------------------\n\n* fix: Make job names unique and handle exception where ever job is created/updated\n\n[1.14.2] - 2021-09-08\n---------------------\n\n* Fixed an issue that was causing an error while index jobs data to algolia.\n\n[1.14.1] - 2021-08-20\n---------------------\n\n* Decreased skills query chunk_size from 2000 to 50 to fetch more jobs.\n\n[1.14.0] - 2021-08-16\n---------------------\n\n* Added managment command and related code to index jobs data to algolia.\n\n[1.13.0] - 2021-08-9\n---------------------\n\n* Added Skill, Job and JobPostings viewsets.\n\n[1.12.2] - 2021-08-5\n---------------------\n\n* Add job posting information in utility method `get_course_jobs`.\n\n[1.12.1] - 2021-08-3\n---------------------\n\n* Add utility method `get_course_jobs` to return job associated with a course.\n\n[1.12.0] - 2021-07-13\n---------------------\n\n* Added support for django 3.1 and 3.2\n\n[1.11.2] - 2021-05-28\n---------------------\n\n* Added utility method to return serialized course skills.\n\n[1.11.1] - 2021-04-20\n---------------------\n\n* Fixed .rst issues in CHANGELOG.rst\n\n[1.11.0] - 2021-04-16\n---------------------\n\n* Mention currency in median salary field and add verbose name for models.\n\n[1.10.0] - 2021-04-12\n---------------------\n\n* Remove all the usages of old `course_id` field including the column definition in `CourseSkills` model.\n\n[1.9.0] - 2021-04-12\n--------------------\n\n* Replace the usages of old `course_id` in `CourseSkills` with the new `course_key` field.\n\n[1.8.0] - 2021-04-09\n--------------------\n\n* Added a new field named `course_key` in `CourseSkills` model to deprecate and replace the old `course_id` field in future.\n\n[1.7.0] - 2021-04-07\n--------------------\n\n* Removed RefreshCourseSkill view.\n\n[1.6.2] - 2021-03-12\n--------------------\n\n* Handled edge cases in `refresh_course_skills` command.\n\n[1.6.1] - 2021-03-10\n--------------------\n\n* Updated logging structure for `refresh_course_skills` command.\n\n[1.6.0] - 2021-03-09\n--------------------\n\n* Added support for --all param in `refresh_course_skills` command to back populate data.\n\n[1.5.0] - 2021-03-04\n--------------------\n\n* Added `populate_job_names` command.\n\n[1.4.1] - 2021-02-19\n--------------------\n\n*  Added description field in Skill model and update the refresh_course_skill command to save skill description.\n*  Pinning EMSI skills API version to 7.35\n\n[1.4.0] - 2021-02-17\n--------------------\n\n* Updated refresh_job_skill command to get jobs related only to skills that are in our system\n* Updated refresh_job_postings command to get job_posting only related to job we already have in our system.\n* Added constrains on the Job, Skill, JobPostings, CourseSkill and JobSkill table.\n* Added migration to remove all previous taxonomy data.\n* Added utility to chuck the queryset provided.\n\n[1.3.6] - 2021-01-29\n--------------------\n\n* Remove caching from EMSI API client.\n\n[1.3.5] - 2021-01-27\n--------------------\n\n* Added some utility functions for adding/removing course skills to/from blacklist.\n\n[1.3.4] - 2021-01-27\n--------------------\n\n* More logging.\n\n[1.3.3] - 2021-01-26\n--------------------\n\n* Improve logging.\n\n[1.3.2] - 2021-01-25\n--------------------\n\n* Added logs for signals and tasks.\n\n[1.3.1] - 2021-01-22\n--------------------\n\n* Added the ability to black list course skills.\n\n[1.3.0] - 2021-01-13\n--------------------\n\n* Added JobSkills.skill column and removed JobSkills.name column.\n\n[1.2.1] - 2021-01-07\n--------------------\n\n* Added course update signal and handler to trigger the celery task\n* Added celery task to update course skills\n* Refactored `refresh_course_skills` management command\n\n[1.2.0] - 2020-12-24\n--------------------\n\n* Fixed TypeError that pops up sometimes while communicating with the EMSI API.\n\n[1.1.6] - 2020-12-24\n--------------------\n\n* Updated the README description.\n\n[1.1.5] - 2020-12-18\n--------------------\n\n* Fixed travis issue related to PyPI upload.\n\n[1.1.4] - 2020-12-17\n--------------------\n\n* Fixed the bug where EMSI API was returning 404 for job posting data.\n\n[1.1.3] - 2020-11-05\n--------------------\n\n* Updating travis configuration.\n\n[1.1.2] - 2020-10-20\n--------------------\n\n* Updating jobs-salary data's query.\n\n[1.1.1] - 2020-10-20\n--------------------\n\n* Updating skills-jobs data's query.\n\n[1.1.0] - 2020-09-30\n--------------------\n\n* Renamed main package name from taxonomy-service to taxonomy-connector.\n\n[1.0.1] - 2020-09-21\n--------------------\n\n* Added package data, so that migrations and python packages are included in the final build.\n\n[1.0.0] - 2020-09-09\n--------------------\n\n* Added Providers and Validators for integrations and upgraded to the first stable release.\n\n[0.1.1] - 2020-09-09\n--------------------\n\n* Enable Travis integration\n\n[0.1.0] - 2020-08-27\n--------------------\n\n* Added Basic skeleton and clients to call EMSI endpoint.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Taxonomy connector",
    "version": "1.50.0",
    "project_urls": {
        "Homepage": "https://github.com/openedx/taxonomy-connector"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17633a99122b78a9e10550af3b3bec68d418ea17d785eec125bed02b876e6800",
                "md5": "bc4ddc8ff9e3ffb9a2f3bb6be6d61817",
                "sha256": "ee01f82f2523d54f16fa5a9b336b2c70e22997482b397e6a75491153c5b8a921"
            },
            "downloads": -1,
            "filename": "taxonomy_connector-1.50.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bc4ddc8ff9e3ffb9a2f3bb6be6d61817",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 113503,
            "upload_time": "2024-03-27T07:11:45",
            "upload_time_iso_8601": "2024-03-27T07:11:45.694993Z",
            "url": "https://files.pythonhosted.org/packages/17/63/3a99122b78a9e10550af3b3bec68d418ea17d785eec125bed02b876e6800/taxonomy_connector-1.50.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f80cc14108aaaf69197bb9d3261a7049849d3bfb92f4e675febecb8aec9ae8da",
                "md5": "8716c01a2133dd2ddd5eb75ef7e260d5",
                "sha256": "5338af90d223d4d8a5bee2c3f2547fe9d92889e3537e097d93dbf6074d775eae"
            },
            "downloads": -1,
            "filename": "taxonomy-connector-1.50.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8716c01a2133dd2ddd5eb75ef7e260d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 111250,
            "upload_time": "2024-03-27T07:11:47",
            "upload_time_iso_8601": "2024-03-27T07:11:47.900045Z",
            "url": "https://files.pythonhosted.org/packages/f8/0c/c14108aaaf69197bb9d3261a7049849d3bfb92f4e675febecb8aec9ae8da/taxonomy-connector-1.50.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 07:11:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "openedx",
    "github_project": "taxonomy-connector",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "taxonomy-connector"
}
        
edX
Elapsed time: 0.22988s