hex logo Hex
Packages Pricing Docs
Log In
Packages Pricing Docs Log In
Packages

meeseeks

0.4.0
0.18.0 0.17.0 0.16.1 0.16.0 0.15.1 0.15.0 0.14.0 0.13.1 0.13.0 0.12.0 0.11.2 0.11.1 0.11.0 0.10.1 0.10.0 0.9.5 0.9.4 0.9.3 0.9.2 0.9.1 0.9.0 0.8.0 0.7.7 0.7.6 0.7.5 0.7.4 0.7.3 0.7.2 0.7.1 0.7.0 0.6.0 0.5.0 0.4.1 0.4.0 0.3.1 0.3.0 0.2.1 0.2.0 0.1.0

Meeseeks is a library for parsing and extracting data from HTML and XML with CSS or XPath selectors.

HexDocs

Current section

Files

Jump to
Readme
39 Versions
1 Dependency
Dependants
Files
Activity
Readme 39 Versions 1 Dependency Dependants Files Activity
meeseeks lib meeseeks document data.ex
Raw

52 files

  • lib
    • meeseeks
      • accumulator
        • all.ex
        • one.ex
      • document
        • comment.ex
        • data.ex
        • doctype.ex
        • element.ex
        • helpers.ex
        • node.ex
        • text.ex
      • selector
        • combinator
          • child_elements.ex
          • descendant_elements.ex
          • next_sibling_element.ex
          • next_sibling_elements.ex
        • css
          • parser.ex
          • tokenizer.ex
        • element
          • attribute
            • attribute.ex
            • attribute_prefix.ex
            • helpers.ex
            • value.ex
            • value_contains.ex
            • value_dash.ex
            • value_includes.ex
            • value_prefix.ex
            • value_suffix.ex
          • pseudo_class
            • first_child.ex
            • first_of_type.ex
            • helpers.ex
            • last_child.ex
            • last_of_type.ex
            • not.ex
            • nth_child.ex
            • nth_last_child.ex
            • nth_last_of_type.ex
            • nth_of_type.ex
          • namespace.ex
          • tag.ex
        • combinator.ex
        • css.ex
        • element.ex
      • accumulator.ex
      • css.ex
      • document.ex
      • parser.ex
      • result.ex
      • select.ex
      • selector.ex
      • tuple_tree.ex
    • meeseeks.ex
  • src
    • css_selector_tokenizer.xrl
  • LICENSE
  • README.md
  • mix.exs

    No matching files

    Package files

      No matching files

      lib/meeseeks/document/data.ex

      defmodule Meeseeks.Document.Data do
      @moduledoc false
      use Meeseeks.Document.Node
      alias Meeseeks.Document.Helpers
      @enforce_keys [:id]
      defstruct parent: nil, id: nil, content: ""
      def data(node, _document) do
      Helpers.collapse_whitespace(node.content)
      end
      def html(node, _document) do
      node.content
      end
      def tree(node, _document) do
      node.content
      end
      end
      hex logo Hex
      About Blog Sponsors Status Advisories
      Documentation FAQ Specifications Report Client Issue Report General Issue Report Security Issue Contact Support
      Code of Conduct Terms of Service Privacy Policy Copyright Policy Dispute Policy

      Copyright 2015. Six Colors AB.

      Powered by the Erlang VM and the Elixir Programming Language

      Search filters

      Type any of these into the search box. They can be combined with free text which searches package names and descriptions.

      Operator Description Example
      name: Match package name. Supports * wildcards and repo/package form name:phx* or name:hexpm/phoenix
      description: Full-text search of package descriptions description:auth
      depends: Packages depending on a given package. Supports repo:package form depends:ecto or depends:hexpm:ecto
      build_tool: Filter by build tool build_tool:mix
      updated_after: Packages updated after an ISO8601 datetime updated_after:2025-01-01T00:00:00Z
      extra: Match custom metadata (key,value). Nested keys are separated by commas extra:license,MIT

      Wrap values in double quotes to include spaces, e.g. name:"my package".