azure-schemaregistry-avroserializer


Nameazure-schemaregistry-avroserializer JSON
Version 1.0.0b4.post1 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Schema Registry Avro Serializer Client Library for Python
upload_time2023-09-07 01:00:29
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_pythonNone
licenseMIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ## Microsoft Azure SDK for Python

This package is no longer being maintained. Use the [azure-schemaregistry-avroencoder](https://pypi.org/project/azure-schemaregistry-avroencoder/) package instead.

For migration instructions, see the [migration guide](https://aka.ms/azsdk/python/migrate/sr-avroserializer-to-avroencoder).


# Release History

## 1.0.0b4.post1 (2023-08-15)

This package is no longer being maintained. Use the [azure-schemaregistry-avroencoder](https://pypi.org/project/azure-schemaregistry-avroencoder/) package instead.

For migration instructions, see the [migration guide](https://aka.ms/azsdk/python/migrate/sr-avroserializer-to-avroencoder).

## 1.0.0b4 (2021-11-11)

### Features Added

- Async version of `AvroSerializer` has been added under `azure.schemaregistry.serializer.avroserializer.aio`.
- Depends on `azure-schemaregistry>=1.0.0,<2.0.0`.

### Breaking Changes

- `SchemaParseError`, `SchemaSerializationError`, and `SchemaDeserializationError` have been introduced under `azure.schemaregistry.serializer.avroserializer.exceptions` and will be raised for corresponding operations.
  - `SchemaParseError` and `SchemaSerializationError` may be raised for errors when calling `serialize` on `AvroSerializer`.
  - `SchemaParseError` and `SchemaDeserializationError` may be raised for errors when calling `deserialize` on `AvroSerializer`.

## 1.0.0b3 (2021-10-06)

### Features Added

- `auto_register_schemas` keyword argument has been added to `AvroSerializer`, which will allow for automatically registering schemas passed in to the `serialize`, when set to `True`, otherwise `False` by default.
- `value` parameter in `serialize` on `AvroSerializer` takes type `Mapping` rather than `Dict`.
- Depends on `azure-schemaregistry==1.0.0b3`.

### Breaking Changes

- `SchemaRegistryAvroSerializer` has been renamed `AvroSerializer`.
- `schema_registry` parameter in the `AvroSerializer` constructor has been renamed `client`.
- `schema_group` parameter in the `AvroSerializer` constructor has been renamed `group_name`.
- `data` parameter in the `serialize` and `deserialize` methods on `AvroSerializer` has been renamed `value`.
- `schema` parameter in the `serialize` method on `AvroSerializer` no longer accepts argument of type `bytes`.
- `AvroSerializer` constructor no longer takes in the `codec` keyword argument.
- The following positional arguments are now required keyword arguments:
  - `client` and `group_name` in `AvroSerializer` constructor
  - `schema` in `serialize` on `AvroSerializer`

## 1.0.0b2 (2021-08-18)

This version and all future versions will require Python 2.7 or Python 3.6+, Python 3.5 is no longer supported.

### Features Added

- Depends on `azure-schemaregistry==1.0.0b2` which supports client-level caching.

## 1.0.0b1 (2020-09-09)

Version 1.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic client library for Azure Schema Registry Avro Serializer.

**New features**

- `SchemaRegistryAvroSerializer` is the top-level client class that provides the functionality to encode and decode avro data utilizing the avro library. It will automatically register schema and retrieve schema from Azure Schema Registry Service. It provides two methods:
  - `serialize`: Serialize dict data into bytes according to the given schema and register schema if needed.
  - `deserialize`: Deserialize bytes data into dict data by automatically retrieving schema from the service.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-schemaregistry-avroserializer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Microsoft Corporation",
    "author_email": "azpysdkhelp@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/a6/82/8d1dc0d7dbc6d37516711b7482b205a8d20d17c30516c1a4ad220fa85b89/azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz",
    "platform": null,
    "description": "## Microsoft Azure SDK for Python\n\nThis package is no longer being maintained. Use the [azure-schemaregistry-avroencoder](https://pypi.org/project/azure-schemaregistry-avroencoder/) package instead.\n\nFor migration instructions, see the [migration guide](https://aka.ms/azsdk/python/migrate/sr-avroserializer-to-avroencoder).\n\n\n# Release History\n\n## 1.0.0b4.post1 (2023-08-15)\n\nThis package is no longer being maintained. Use the [azure-schemaregistry-avroencoder](https://pypi.org/project/azure-schemaregistry-avroencoder/) package instead.\n\nFor migration instructions, see the [migration guide](https://aka.ms/azsdk/python/migrate/sr-avroserializer-to-avroencoder).\n\n## 1.0.0b4 (2021-11-11)\n\n### Features Added\n\n- Async version of `AvroSerializer` has been added under `azure.schemaregistry.serializer.avroserializer.aio`.\n- Depends on `azure-schemaregistry>=1.0.0,<2.0.0`.\n\n### Breaking Changes\n\n- `SchemaParseError`, `SchemaSerializationError`, and `SchemaDeserializationError` have been introduced under `azure.schemaregistry.serializer.avroserializer.exceptions` and will be raised for corresponding operations.\n  - `SchemaParseError` and `SchemaSerializationError` may be raised for errors when calling `serialize` on `AvroSerializer`.\n  - `SchemaParseError` and `SchemaDeserializationError` may be raised for errors when calling `deserialize` on `AvroSerializer`.\n\n## 1.0.0b3 (2021-10-06)\n\n### Features Added\n\n- `auto_register_schemas` keyword argument has been added to `AvroSerializer`, which will allow for automatically registering schemas passed in to the `serialize`, when set to `True`, otherwise `False` by default.\n- `value` parameter in `serialize` on `AvroSerializer` takes type `Mapping` rather than `Dict`.\n- Depends on `azure-schemaregistry==1.0.0b3`.\n\n### Breaking Changes\n\n- `SchemaRegistryAvroSerializer` has been renamed `AvroSerializer`.\n- `schema_registry` parameter in the `AvroSerializer` constructor has been renamed `client`.\n- `schema_group` parameter in the `AvroSerializer` constructor has been renamed `group_name`.\n- `data` parameter in the `serialize` and `deserialize` methods on `AvroSerializer` has been renamed `value`.\n- `schema` parameter in the `serialize` method on `AvroSerializer` no longer accepts argument of type `bytes`.\n- `AvroSerializer` constructor no longer takes in the `codec` keyword argument.\n- The following positional arguments are now required keyword arguments:\n  - `client` and `group_name` in `AvroSerializer` constructor\n  - `schema` in `serialize` on `AvroSerializer`\n\n## 1.0.0b2 (2021-08-18)\n\nThis version and all future versions will require Python 2.7 or Python 3.6+, Python 3.5 is no longer supported.\n\n### Features Added\n\n- Depends on `azure-schemaregistry==1.0.0b2` which supports client-level caching.\n\n## 1.0.0b1 (2020-09-09)\n\nVersion 1.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic client library for Azure Schema Registry Avro Serializer.\n\n**New features**\n\n- `SchemaRegistryAvroSerializer` is the top-level client class that provides the functionality to encode and decode avro data utilizing the avro library. It will automatically register schema and retrieve schema from Azure Schema Registry Service. It provides two methods:\n  - `serialize`: Serialize dict data into bytes according to the given schema and register schema if needed.\n  - `deserialize`: Deserialize bytes data into dict data by automatically retrieving schema from the service.\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Schema Registry Avro Serializer Client Library for Python",
    "version": "1.0.0b4.post1",
    "project_urls": {
        "Homepage": "https://github.com/Azure/azure-sdk-for-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "babccca381aed69164c16d1a29d22f2fffdc3e905830772d45b215a65683c995",
                "md5": "288fa56e7195d9f2c399db2d970eea50",
                "sha256": "e49d57210f8e15b756436df91a54be8718ad77d0a87bc448ce09859dd7297f5a"
            },
            "downloads": -1,
            "filename": "azure_schemaregistry_avroserializer-1.0.0b4.post1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "288fa56e7195d9f2c399db2d970eea50",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 19623,
            "upload_time": "2023-09-07T01:00:31",
            "upload_time_iso_8601": "2023-09-07T01:00:31.633464Z",
            "url": "https://files.pythonhosted.org/packages/ba/bc/cca381aed69164c16d1a29d22f2fffdc3e905830772d45b215a65683c995/azure_schemaregistry_avroserializer-1.0.0b4.post1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6828d1dc0d7dbc6d37516711b7482b205a8d20d17c30516c1a4ad220fa85b89",
                "md5": "613c3cfa3172ff6c80f5251b2cd28aad",
                "sha256": "1ef24d2defe989a0e198d935875eddbdad0b0b71d47e23a9e4382ce3ca601e3c"
            },
            "downloads": -1,
            "filename": "azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "613c3cfa3172ff6c80f5251b2cd28aad",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 16904,
            "upload_time": "2023-09-07T01:00:29",
            "upload_time_iso_8601": "2023-09-07T01:00:29.607330Z",
            "url": "https://files.pythonhosted.org/packages/a6/82/8d1dc0d7dbc6d37516711b7482b205a8d20d17c30516c1a4ad220fa85b89/azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-07 01:00:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Azure",
    "github_project": "azure-sdk-for-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "azure-schemaregistry-avroserializer"
}
        
Elapsed time: 0.32453s