#ifndef YTDLPWRAPPER_H #define YTDLPWRAPPER_H #include #include #include class YtdlpWrapper { public: nlohmann::json getJsonSearch(const string& searchTerm, int limit = 1); private: pybind11::object get_ytdl(); pybind11::object ytdl = pybind11::none(); }; #endif