Metadata-Version: 2.1
Name: abouttag
Version: 1.3.1
Summary: Normalizes about tags for Fluidinfo
Home-page: http://github.com/njr0/abouttag/
Author: Nicholas J. Radcliffe
Author-email: njr@StochasticSolutions.com
License: UNKNOWN
Download-URL: https://github.com/njr0/abouttag
Keywords: fluidinfo,about,tag,normalization,canonicalization,standardarization
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
License-File: LICENSE

This package provides functions for generating about tags for
Fluidinfo following various conventions.

Fluidinfo is a hosted, online database based on the notion of tagging.
For more information on FluidDB, visit http://fluidinfo.com.

For more information on the ideas that motivated this module,
see posts at http://abouttag.blogspot.com.   A good place to
start is

http://abouttag.blogspot.com/2010/03/about-tag-conventions-in-fluiddb.html

EXAMPLE

Examples of usage are provided in the examples directory.
Some simple examples are:

    from abouttag.books import book
    from abouttag.music import album, artist, track
    from abouttag.film import film, movie

    print book(u"One Hundred Years of Solitude", u'Gabriel García Márquez')
    print book(u'The Feynman Lectures on Physics',
               u'Richard P. Feynman', u'Robert B. Leighton',
               u'Matthew Sands')
    print track(u'Bamboulé', u'Bensusan and Malherbe')
    print album(u"Solilaï", u'Pierre Bensusan')
    print artist(u"Crosby, Stills, Nash & Young")
    print film(u"Citizen Kane", u'1941')
    print movie(u"L'Âge d'Or", u'1930')


INSTALLATION

    pip install -U abouttag

DEPENDENCIES

    urlnorm


