You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

4 years ago
  1. Metadata-Version: 2.0
  2. Name: cssselect
  3. Version: 1.0.3
  4. Summary: cssselect parses CSS3 Selectors and translates them to XPath 1.0
  5. Home-page: https://github.com/scrapy/cssselect
  6. Author: Paul Tremberth
  7. Author-email: paul.tremberth@gmail.com
  8. License: BSD
  9. Description-Content-Type: UNKNOWN
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 4 - Beta
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Programming Language :: Python :: 2
  15. Classifier: Programming Language :: Python :: 2.7
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Programming Language :: Python :: 3.4
  18. Classifier: Programming Language :: Python :: 3.5
  19. Classifier: Programming Language :: Python :: 3.6
  20. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  21. ===================================
  22. cssselect: CSS Selectors for Python
  23. ===================================
  24. .. image:: https://img.shields.io/pypi/v/cssselect.svg
  25. :target: https://pypi.python.org/pypi/cssselect
  26. :alt: PyPI Version
  27. .. image:: https://img.shields.io/pypi/pyversions/cssselect.svg
  28. :target: https://pypi.python.org/pypi/cssselect
  29. :alt: Supported Python Versions
  30. .. image:: https://img.shields.io/travis/scrapy/cssselect/master.svg
  31. :target: https://travis-ci.org/scrapy/cssselect
  32. :alt: Build Status
  33. .. image:: https://img.shields.io/codecov/c/github/scrapy/cssselect/master.svg
  34. :target: https://codecov.io/github/scrapy/cssselect?branch=master
  35. :alt: Coverage report
  36. *cssselect* parses `CSS3 Selectors`_ and translate them to `XPath 1.0`_
  37. expressions. Such expressions can be used in lxml_ or another XPath engine
  38. to find the matching elements in an XML or HTML document.
  39. This module used to live inside of lxml as ``lxml.cssselect`` before it was
  40. extracted as a stand-alone project.
  41. .. _CSS3 Selectors: https://www.w3.org/TR/css3-selectors/
  42. .. _XPath 1.0: https://www.w3.org/TR/xpath/
  43. .. _lxml: http://lxml.de/
  44. Quick facts:
  45. * Free software: BSD licensed
  46. * Compatible with Python 2.7 and 3.4+
  47. * Latest documentation `on Read the Docs <https://cssselect.readthedocs.io/>`_
  48. * Source, issues and pull requests `on GitHub
  49. <https://github.com/scrapy/cssselect>`_
  50. * Releases `on PyPI <http://pypi.python.org/pypi/cssselect>`_
  51. * Install with ``pip install cssselect``