GithubHelp home page GithubHelp logo

slack's Introduction

slack

This project aims to create a simple, idiomatic, fully documented Rust library for the Slack Web API. I gave a talk about it, titled "What's so hard about writing a Slack Client in Rust?" [Video] [Slides].

Status

All code and error handling for the Slack methods are fully auto-generated.
What is missing is generating proper request and response types from the API.
This would be a lot of manual work at the moment, because the Slack API documentation is not machine-readable. There is an open ticket for that and some possible workarounds, but not much traction.
Because of that I need to halt this project for the near future.
I'm uploading it anyway to inspire fellow Rustaceans.

Update: There is an OpenAPI-based machine-readable spec available now. See here. Maybe someone wants to give it a shot.

Goals

  • Great ergonomics. Easy to use.
  • Pure, idiomatic Rust code.
  • Fully documented and tested.
  • Solid error handling.
  • Proper conversion from JSON to semantic types.
  • Full Slack API implementation.

Quick start

let mut client = slack::Client::new("your_slack_token");
let response = client.im_history("D0AA48KM3").latest(123.1).send();

Alternatively you can build the request objects yourself:

  let client = slack::Client::new("your_slack_token");
  let history = history::HistoryOptions {
      channel: "hello",
      inclusive: Some(true),
      ..Default::default()
  };
  println!("{}", client.send(history).unwrap());

TODO

  • Auto-generate Slack request and response types
  • Enforce documentation (#![deny(missing_docs)])

Alternatives

https://github.com/slack-rs/slack-rs-api

slack's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  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.