METADATA 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Metadata-Version: 2.0
  2. Name: cssselect
  3. Version: 1.0.1
  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. Platform: UNKNOWN
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: Python :: 2
  14. Classifier: Programming Language :: Python :: 2.6
  15. Classifier: Programming Language :: Python :: 2.7
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Programming Language :: Python :: 3.3
  18. Classifier: Programming Language :: Python :: 3.4
  19. Classifier: Programming Language :: Python :: 3.5
  20. Classifier: Programming Language :: Python :: 3.6
  21. ===================================
  22. cssselect: CSS Selectors for Python
  23. ===================================
  24. *cssselect* parses `CSS3 Selectors`_ and translate them to `XPath 1.0`_
  25. expressions. Such expressions can be used in lxml_ or another XPath engine
  26. to find the matching elements in an XML or HTML document.
  27. This module used to live inside of lxml as ``lxml.cssselect`` before it was
  28. extracted as a stand-alone project.
  29. .. _CSS3 Selectors: https://www.w3.org/TR/css3-selectors/
  30. .. _XPath 1.0: https://www.w3.org/TR/xpath/
  31. .. _lxml: http://lxml.de/
  32. Quick facts:
  33. * Free software: BSD licensed
  34. * Compatible with Python 2.6+ and 3.3+
  35. * Latest documentation `on Read the Docs <https://cssselect.readthedocs.io/>`_
  36. * Source, issues and pull requests `on Github
  37. <https://github.com/scrapy/cssselect>`_
  38. * Releases `on PyPI <http://pypi.python.org/pypi/cssselect>`_
  39. * Install with ``pip install cssselect``