New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

t61codec

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

t61codec

Python Codec for ITU T.61 Strings

  • 2.0.0
  • PyPI
  • Socket score

Maintainers
1

Python Codec for ITU T.61 Strings

For information about the codec see https://en.wikipedia.org/wiki/ITU_T.61

Installation

Installation follows the standard Python procedure:

::

pip install t61codec

The package uses Semantic Versioning 2.0 (https://semver.org/spec/v2.0.0.html).

Usage

The codec can be registered into Python's codec registry. A helper method has been provided::

import t61codec
t61codec.register()

Please see the notes on codecs.register <https://docs.python.org/3/library/codecs.html#codecs.register>_!

After registering, the codec is available as either 't61' or 't.61'::

>>> b'Hello T.61: \xe0'.decode('t.61')
'Hello T.61: Ω'
>>> 'Hello T.61: Ω'.encode('t.61')
b'Hello T.61: \xe0'

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc