Skip to main content

library for SIP url handling/maninupation

Project description

ursine - a bearable sip uri library

Build Status


installing

ursine is packaged and available on pypi

pip install ursine

basic usage

from ursine import URI

alice_uri = URI('"Alice" <sips:alice@localhost:5080>')
bob_uri = URI('"Bob" <sips:bob@localhost:5080>')

# URI mutations actually return new, distinct URIs
modified_uri = alice_uri.with_port(6000)
assert modified_uri != alice_uri  # True

# optional URI components can be removed
userless_uri = bob_uri.with_contact(None).with_user(None)

# URIs can be stringified again for use in other sytems
print(userless_uri)  # 'sips:localhost:5080;transport=tcp'

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

ursine-0.2.4.tar.gz (11.1 kB view hashes)

Uploaded Source

Built Distribution

ursine-0.2.4-py2.py3-none-any.whl (9.9 kB view hashes)

Uploaded Python 2 Python 3

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