Metadata-Version: 2.1
Name: tracking-url
Version: 0.0.5
Summary: Detect package carrier from tracking number and generate tracking url
Home-page: https://github.com/sereema/tracking-url
Author: Kevin Michel
Author-email: kevin.michel@sereema.com
License: UNKNOWN
Download-URL: https://github.com/sereema/tracking-url/archive/v0.0.5.tar.gz
Keywords: tracking,number,package,carrier,url,ups,fedex,usps,dhl
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules

===========
Description
===========
Detect package carrier from tracking number and generate tracking url.

============
Requirements
============
* python >= 3.4

============
Installation
============
.. code-block:: bash

    $ pip install tracking_url

=====
Usage
=====

.. code-block:: python

    import tracking_url

    match = tracking_url.guess_carrier('0123456789')
    if match is None:
        print('No matching carrier found')
    else:
        print('Number:', match.number)
        print('Carrier:', match.carrier)
        print('Url:', match.url)

======
Thanks
======
This code is a simple python port of the identically named node module.

Big thanks to https://github.com/wankdanker for the original code and
research.

======
Issues
======
If you have any suggestions, bug reports or annoyances please report them
to the issue tracker at https://github.com/sereema/tracking-url/issues .


