apyhub / apyhub.go

ApyHub SDK for Golang is a library for accessing the ApyHub APIs.

Home Page:https://apyhub.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alt text

ApyHub for Golang

Reference Chat

About

Welcome to the ApyHub SDK for Golang! This library provides easy access to the ApyHub APIs through a set of simple and powerful functions.

Our underlying philosophy is to not bloat applications, which is why we have made sure to keep the package as minimal as possible. With this SDK, you can easily perform tasks such as file conversion, text and metadata extraction, document and image generation, image processing, and access to data lists and currency conversion. As our platform grows and develops new APIs, we will be adding more functions to this library.

To learn more about ApyHub, visit our website at apyhub.com or join our Discord server at discord.com/invite/apyhub.

API Documentation

Our SDK provides access to the following API categories:

Each of these categories contains multiple functions for interacting with the corresponding API. For more examples and detailed API documentation, see the links above.

Installation

Use go get to retrieve the SDK to add it to your GOPATH workspace, or project's Go module dependencies.

go get github.com/apyhub/apyhub.go

To update the SDK use go get -u to retrieve the latest version of the SDK.

go get -u github.com/apyhub/apyhub.go

Usage

To use the library, you will need to initialize it with your ApyHub API token.

Token

import (
   apyhub "github.com/apyhub/apyhub.go"
)

err:=apyhub.InitApyHub("YOUR_APY_TOKEN")
if err!=nil {
   log.Fatal(err)
}

Basic Authorization

import(
   apyhub "github.com/apyhub/apyhub.go"
   h "github.com/apyhub/apyhub.go/helper"
)

BasicAuth := h.BasicAuth{
   Username: "username",
   Password: "password",
}
    
err:=apyhub.InitApyHub(BasicAuth)
if err!=nil {
   log.Fatal(err)
}

Example

Once the library is initialized, you can import and use the various functions and methods provided by the library. For example, to access the data list of countries, you can do the following:

import (
   "github.com/apyhub/apyhub.go/data"
)

 country,err:=data.Country("countrycode")

Contributing

We welcome contributions to this project. If you have an idea for a new feature or improvement, please open an issue to discuss it. If you'd like to contribute code, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your changes.
  3. Make your changes and commit them.
  4. Push your branch to your fork on GitHub.
  5. Open a pull request from your branch to the main branch of this repository.

About

ApyHub SDK for Golang is a library for accessing the ApyHub APIs.

https://apyhub.com/

License:MIT License


Languages

Language:Go 100.0%