Metadata-Version: 2.1
Name: piculet
Version: 2.0.0a0
Summary: XML/HTML scraper using XPath queries.
Home-page: https://piculet.tekir.org/
License: LGPL-3.0+
Keywords: xml,html,xpath,scrape
Author: H. Turgut Uyar
Author-email: uyar@tekir.org
Requires-Python: >=3.5,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Utilities
Provides-Extra: yaml
Requires-Dist: strictyaml (>=1.0,<2.0); extra == "yaml"
Project-URL: Documentation, https://piculet.tekir.org/
Project-URL: Repository, https://github.com/uyar/piculet
Description-Content-Type: text/x-rst

|pypi| |license| |azure|

.. |pypi| image:: https://img.shields.io/pypi/v/piculet.svg?style=flat-square
    :target: https://pypi.org/project/piculet/
    :alt: PyPI version.

.. |license| image:: https://img.shields.io/pypi/l/piculet.svg?style=flat-square
    :target: https://pypi.org/project/piculet/
    :alt: Project license.

.. |azure| image:: https://dev.azure.com/tekir/piculet/_apis/build/status/uyar.piculet?branchName=master
    :target: https://dev.azure.com/tekir/piculet/_build
    :alt: Azure Pipelines build status.

Piculet is a module for extracting data from XML or HTML documents
using XPath queries.
It consists of a `single source file`_ with no dependencies other than
the standard library, which makes it very easy to integrate into applications.
It also provides a command line interface.

Getting started
---------------

Piculet has been tested with Python 3.5+ and compatible versions of PyPy.
You can install the latest version using ``pip``::

    pip install piculet

.. _single source file: https://github.com/uyar/piculet/blob/master/piculet.py

Getting help
------------

The documentation is available on: https://piculet.tekir.org/

The source code can be obtained from: https://github.com/uyar/piculet

License
-------

Copyright (C) 2014-2019 H. Turgut Uyar <uyar@tekir.org>

Piculet is released under the LGPL license, version 3 or later.
Read the included `LICENSE.txt`_ file for details.

.. _LICENSE.txt: https://github.com/uyar/piculet/blob/master/LICENSE.txt

