You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use annie a video url extractor for my application. But, from what I see is that annie is strongly integrated with "config" that is specified as cli arguments. I could definitely use annie as cli and just use it as a subprocess. But, it seems very hacky and not reliable.
What I want is something like:
package main
import"github.com/iawia002/annie"funcmain(){
url:="https://www.youtube.com/watch?v=jF0kD7lxTTw"extractor:=annie.New()
data:=extractor.Extract(url)
// Use the data for my program
}
The text was updated successfully, but these errors were encountered:
I want to use annie a video url extractor for my application. But, from what I see is that annie is strongly integrated with "config" that is specified as cli arguments. I could definitely use annie as cli and just use it as a subprocess. But, it seems very hacky and not reliable.
What I want is something like:
The text was updated successfully, but these errors were encountered: