Metadata-Version: 1.1
Name: particle
Version: 0.0.5
Summary: Multi-method Article Extraction
Home-page: http://github.com/newslynx/particle
Author: Brian Abelson
Author-email: brian@newslynx.org
License: MIT
Description: |travis-img| particle ====== *Multi-method Article Extraction*
        
        For now ``particle`` is just a wrapper around
        `newspaper <http://github.com/codelucas/newspaper>`__. Eventually we'll
        test out multiple article extraction methods and create an algorithm for
        determining which result is the best candidate.
        
        Install
        -------
        
        ::
        
            pip install particle
        
        Test
        ----
        
        Requires ``nose``
        
        ::
        
            nosetests
        
        Usage
        -----
        
        Pass in a url to ``extract`` and return data which matches the schema of
        `superss <http://github.com/newslynx/superss>`__.
        
        .. code:: python
        
            from particle import Particle
            url = 'http://www.publicintegrity.org/2014/06/05/14895/150-billion-reasons-medicare-advantage-matters'
            p = Particle()
            article_data = p.extract(url)
        
        .. |travis-img| image:: https://travis-ci.org/newslynx/particle.svg
        
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
