about summary refs log blame commit diff stats
path: root/src/main.cpp
blob: f258c244a8001e731c4a21ab3f4446e44aafdc9e (plain) (tree)
1
2
3
4
5
6
7
8
9

                            
                    




                    
                  
                     
                           
 
 
                    

            
                                   
 
                    

                                                                                 





                                                 
 
#include <cpr/cpr.h>
#include <nlohmann/json.hpp>
#include <sqlite3.h>
#include <string>
#include <iostream>
#include <exception>
#include <vector>

#include "tui.cpp"
#include "invapi.cpp"
#include "YtdlpWrapper.cpp"


using namespace std;

int main() {
    py::scoped_interpreter guard{};

    YtdlpWrapper yt;
    // nlohmann::json j = yt.getJsonSearch("All Quiet on the Western Front Ost");
    // cout << j << endl;

    // vector<string> instances = getInstances();
    // for (auto i: instances) {
    //     cout << i << " ";
    // }
    // cout << endl;
}