A Tag helper.
Project description
How to install using pip:
Stable:
pip install tags.py
Developement:
pip install git+https://github.com/proguy914629bot/tags.py
Simple guide on how to use:
from tags import Tag
tag = Tag()
#Without aliases:
tag.add_tag(r"{user}", "user123")
#With aliases called "{users}" and "{usr}":
tag.add_tag(r"{user}", "user123", r"{users}", r"{usr}")
#Converting the string:
string = r"{user} is the same as {users} and {usr}!"
tag.convert(string) # "user123 is the same as user123 and user123!"
#Getting a tag by name:
tag.get_tag("Insert-Name-Here")
#Getting a tag by id:
tag.get_tag("Insert-ID-Here")
#Get a tag ID by name:
#Way 1:
tag.get_tag("Insert-Name-Here").id
#Way 2:
tag.get_id("Insert-Name-Here")
#All these ways are the same. get_tag.id returns tag.get_id.
Contribution:
You can contribute by forking this repository, or cloning this repository. This is fully open-sourced in Github.
License:
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tags.py-0.8.7.tar.gz
(3.4 kB
view details)