Tagged: API
“Copperr” – My API-Wrapper R Package for Copper™ CRM
copperr is an R package that connects to the Copper™ CRM Platform APIs using tidy principles. The package implements most key actions from their REST API described on Copper’s developer portal here. The package includes what you’d expect to see in an API wrapper:
- Basic (Username/API-key) Authentication methods, and caching for API details
- CRUD (Create, Retrieve, Update, Delete) methods for records
- Query a set of records
- Retrieve metadata Resources (Custom Fields, Sources, Pipeline Stages, etc.)
- Retrieve User profiles
- Helper functions to simplify some common record lookups and manipulations
You can download the package and read the “Getting Started” guide on Github here
I’ll probably provide some examples of the kind of sales data analysis and data cleansing I am using this package for in subsequent posts. Leave a comment if you’re interested in this?
JavaScript is the new C
In the days when processing power was expensive, writing assembler code was the benchmark, and high level languages were seen as an extravagance, C was a revelation. Near-assembler fast, bit-level operations, but still an expressive 3GL.
OK, so nothing like JavaScript then?
Wait, that’s only the beginning of the story.
REST API on a Pi, Part 2: control your GPIO I/O ports over the internet
A Node.JS Application on Amazon Cloud. Part 3: A simple Webserver in Javascript using Node, Express, and MongoDB
In this third part of our exercise, we’re going to use the primary AWS EC2 instance on which we installed Node in Part 1, and the database EC2 Instance we set up in Part 2, as the platform for building a simple web application server. We are going to code that web server in Javascript, using Node together with the Express and Mongoose Node library packages.