Giter Club home page Giter Club logo

github_api's Introduction

GitHub API for c++

This is a c++ library for accessing GitHub REST API v3.

For connection with GitHub Qt5/6 or libcurl are needed. It is up to the user which to use.

Currently offered functionality is limited but very easy to extend.

How to use it

This is a CMake based project and is meant to be included as a subproject.

Simply embed github_api's sources in your project, choose which http backend you prefer and include github_api project in your CMakeLists.txt like this:

set(GitHubAPI_QtBackend ON)      # use this line if you prefer Qt backend
set(GitHubAPI_CurlBackend ON)    # use this line if you prefer Curl backend
add_subdirectory(github_api)

Then you can link your application against github_api:

target_link_libraries(app
    PRIVATE
        github_api
)

and that's all.

Qt backend can be compiled with Qt5 (default) or Qt6. Set GitHubAPI_UseQt6 CMake variable to TRUE to use Qt6.

Qt example

#include <QCoreApplication>
#include <QDebug>
#include <QNetworkAccessManager>

#include <github_api/github_api_qt.hpp>
#include <github_api/request.hpp>


int main(int argc, char** argv)
{
    QCoreApplication qapp(argc, argv);
    QNetworkAccessManager manager;

    GitHub::QtBackend::Api github(manager);
    GitHub::Request request(github.connect());

    qInfo() << request.getRateLimit().c_str();
    qInfo() << request.getUserInfo("Kicer86").c_str();

    return 0;
}

libcurl example

#include <iostream>

#include <github_api/github_api_curl.hpp>
#include <github_api/request.hpp>


int main(int argc, char** argv)
{
    GitHub::CurlBackend::Api github;
    GitHub::Request request(github.connect());

    std::cout << request.getRateLimit() << '\n';
    std::cout << request.getUserInfo("Kicer86") << '\n';

    return 0;
}

Also please look into 'examples' directory for details.

github_api's People

Contributors

kicer86 avatar kevinmukuna avatar chaoses-ib avatar

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.