Skip to main content

A python libraty for working with macOS tags

Project description

macos-tags

Release Checked with mypy

A python library for working with macOS tags.

Installation

pip install macos-tags

Tutorial & Usage

Get all tags:

>>> import macos_tags


>>> macos_tags.tags()
[Tag(name='design', color=None), ..., Tag(name='python', color=<Color.GREEN: 2>]

Get files by tag name:

>>> macos_tags.find("design")
['/Users/home/apple.jpg', '/Users/home/WEB_POSTERS.png']

Count files by tag name:

>>> macos_tags.count("design")
2

List the tags on the file:

>>> path = "/path/to/file"

>>> macos_tags.get_all(path)
[Tag(name='design', color=None), Tag(name='python', color=<Color.GREEN: 2>]

Add a tag to file:

>>> macos_tags.add("design", file=path)

When using str objects to define a tag, if a tag does not exist in the system, it will be added without a color label.

Add a new color tag by using Tag data class and Color enumeration:

>>> from macos_tags import Tag, Color


>>> tag = Tag(name="python", color=Color.GREEN)

>>> macos_tags.add(tag, file=path)

Add a new color tag using the str object, where the tag name and color number (from 1 to 7) are separated by the literal \n:

>>> tag = f"python\n{Color.GREEN}"  # == "python\n2"

>>> macos_tags.add(tag, file=path)

If the tag already exists in the system with a different color, the new color will be ignored.

Remove tag from file:

>>> macos_tags.remove(tag, file=path)

Remove all tags from a file at once:

>>> macos_tags.remove_all(path)

Change all tags in the file:

>>> macos_tags.get_all(path)
[Tag(name='design', color=None), Tag(name='python', color=<Color.GREEN: 2>]

>>> new_tags = [Tag("book"), Tag("programming", Color.BLUE)]

>>> macos_tags.set_all(new_tags, file=path)

>>> macos_tags.get_all(path)
[Tag(name="book", color=None), Tag("programming", <Color.BLUE: 4>]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

macos-tags-1.4.0.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

macos_tags-1.4.0-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file macos-tags-1.4.0.tar.gz.

File metadata

  • Download URL: macos-tags-1.4.0.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.3 CPython/3.7.6 Darwin/19.2.0

File hashes

Hashes for macos-tags-1.4.0.tar.gz
Algorithm Hash digest
SHA256 1a79aafbb6c1a45da023a32be9ca5b87fe13db52add47f972dd5ca80c12cfc24
MD5 7ea7adedf815da1b70afad41c73cd8a7
BLAKE2b-256 947a8f6e94623c814c09f50bd4cb1049466b1df8881b0049fa245f7e307a8788

See more details on using hashes here.

File details

Details for the file macos_tags-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: macos_tags-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.3 CPython/3.7.6 Darwin/19.2.0

File hashes

Hashes for macos_tags-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f8bccb6b85bf3054d13eb17935adc736202e56141a24a6568c98b3f2337d791
MD5 c2125b2c1f7c593954567e36dd1e162e
BLAKE2b-256 f9214ca08aa5b427193e9c3a4da60774ac2f92cd2bd3ed7c924faa7694f7b8ba

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page