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

youseedee

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

youseedee

Interface to the latest version of the Unicode Character Database

  • 0.6.0
  • PyPI
  • Socket score

Maintainers
1

youseedee: interface to the UCD"

This module allows you to query the Unicode Character Database. The main function to be imported is ucd_data:

>>> ucd_data(0x078A)
{'Age': '3.0',
 'Block': 'Thaana',
 'Canonical_Combining_Class': '0',
 'East_Asian_Width': 'N',
 'General_Category': 'Lo',
 'Line_Break': 'AL',
 'Name': 'THAANA LETTER FAAFU',
 'Script': 'Thaana'}

On first run, it will download the database files for you from unicode.org. These are stored in .youseedee in your home directory. These are also updated if new data is available from unicode.org

You may also use it as a command line utility:

$ python3 -m youseedee 0x078A
{'Age': '3.0',
 'Block': 'Thaana',
 'Canonical_Combining_Class': '0',
 'East_Asian_Width': 'N',
 'General_Category': 'Lo',
 'Line_Break': 'AL',
 'Name': 'THAANA LETTER FAAFU',
 'Script': 'Thaana'}

$ python3 -m youseedee Ǩ
{'Age': '1.1',
 'Block': 'Latin Extended-B',
 'Canonical_Combining_Class': '0',
 'Case_Folding_Mapping': '01E9',
 'Case_Folding_Status': 'C',
 'East_Asian_Width': 'N',
 'General_Category': 'Lu',
 'Line_Break': 'AL',
 'Name': 'LATIN CAPITAL LETTER K WITH CARON',
 'Script': 'Latin'}

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