Code Monkey home page Code Monkey logo

Comments (6)

darvid avatar darvid commented on June 12, 2024 1

going to improve type annotations and tests to cover this, as well as docs, but basically the issue is the returned Database doesn't include a scratch. try this:

hdb.scratch = hyperscan.Scratch(db)
hdb.scan(b"aaa")

also you'll have to keep track of the mode of the database that the serialized representation was created with. i.e. if it was created with stream mode, you'll have to use the stream context manager. currently db.mode isn't set on the returned db object, which I'll try to fix.

from python-hyperscan.

jerzyorlowskimim avatar jerzyorlowskimim commented on June 12, 2024

I am using hyperscan version 0.4.0

from python-hyperscan.

jerzyorlowskimim avatar jerzyorlowskimim commented on June 12, 2024

Steps:

f = open("local/keyword_features_hyperscan_databases/TestKeyword1", 'rb')
hdb = hyperscan.loadb(f.read())
hdb.scan("aaa")

gives:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: a bytes-like object is required

TestKeyword1 is a simple test database with a few words that is being compiled a moment before during tests.

from python-hyperscan.

darvid avatar darvid commented on June 12, 2024

try hdb.scan(b"aaa")

from python-hyperscan.

jerzyorlowskimim avatar jerzyorlowskimim commented on June 12, 2024

hdb.scan(b"aaa") didn't help. But switching back to hyperscan version 0.3.3 solved the issue.

from python-hyperscan.

michaelmior avatar michaelmior commented on June 12, 2024

@darvid Is there any reason that the scratch can't (or shouldn't) be initialized automatically if it's missing? At minimum, it would obviously help to have a more informative error :)

(Also, it looks like there's a small typo in your code example above where the parameter to the Scratch constructor should be hdb instead of db.)

from python-hyperscan.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.