Popularity
5.0
Declining
Activity
0.0
Stable
27
4
14
Monthly Downloads: 32
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
Latest version: v1.1.0
keenex alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view keenex alternatives based on common mentions on social networks and blogs.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
airbrake
An Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels. -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
Bot detection and prevention for Elixir/Phoenix applications
Paraxial.io is bot detection and prevention for Elixir/Phoenix applications. Dealing with scrapers, card cracking, or credential stuffing? We take care of that.
Promo
paraxial.io
Do you think we are missing an alternative of keenex or a related project?
Popular Comparisons
README
Keenex
Keenex provides an Elixir interface to the Keen.io HTTP API.
Usage
Add it to your applications and dependencies in mix.exs
:
def deps do
[{:keenex, "~> 1.1"}]
end
Configure it in config.exs
:
config :keenex,
project_id: "xxxxx", # defaults to System.get_env("KEEN_PROJECT_ID")
read_key: "xxxxx", # defaults to System.get_env("KEEN_READ_KEY")
write_key: "xxxxx", # defaults to System.get_env("KEEN_WRITE_KEY")
httpoison_opts: [timeout: 5000] # defaults to []
And then call functions like:
{status, response} = Keenex.add_event("dinner.tacos", %{test: "tacos"})
status
is either :ok
or :error
.
response
is a Map converted from the JSON response from Keen.
Information about the contents of the response can be found
here.