PyQt如何使用Qt生成的dll?

目前,我想使用PyQt调用Qt生成的dll,但是发现网上多为C的或电脑自带的dll。请各位大侠指点

下面是Qt用C++生成dll的源码

#include "dlltest.h"
#include <QDebug>


DllTest::DllTest()
{
}

void DllTest::PrintTest()
{
    qDebug()<<"dll 被调用";
}


#ifndef DLLTEST_H
#define DLLTEST_H

#include "dlltest_global.h"


class DLLTESTSHARED_EXPORT DllTest
{

public:
    DllTest();
    void PrintTest();
};

#endif // DLLTEST_H

http://blog.csdn.net/jin761153454/article/details/12615619

我也想知道这个问题
abc = QPluginLoader(os.path.realpath(os.listdir(os.getcwd())[0]))
plugin = abc.instance()
errory = abc.errorString()
我是加载上了,但是无法初始化为小部件
不知该如何去做