Printful API Wrapper in TypeScript
Printful API client
Printful SDK for Node.js / TypeScript. A wrapper for the Printful REST API (v2)
The official TypeScript library for the Printful API
Get the metadata from a Google Cloud Platform environment
Google APIs Authentication Client Library for Node.js
Pipedream Printful Components
A result paging utility used by Google node.js modules
Simple request wrapper for Printful, with authorization management.
Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js
A simple utility for promisifying functions and classes.
GOV.UK Notify Node.js client
A simple utility for replacing the projectid token in objects.
Cloud Storage Client Library for Node.js
A common tooling library used by the googleapis npm module. You probably don't want to use this directly.
A Medusa plugin that enables Printful as a fulfillment provider and provides product and order synchronization.
OAuth 2 / OpenID Connect Client API for JavaScript Runtimes
printful api wrapper for typescript.
AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native
JavaScript client for client-personalization
A fully-featured caching GraphQL client.
Actions Http Client
JavaScript client for client-search
AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native
A Ruby client for the Printful.com API (https://developers.printful.com/docs/) generated using their OpenAPI/Swagger spec and the OpenAPI Generator (https://openapi-generator.tech/) tool.
Downloads labels from virtusprinter server and sends them to a serial printer
A client for the Shapeways 3D printing API.
FakeSSL impersonates an HTTPS server and prints the client requests
Client Library for Lulu Print on Demand API
Print Stuff Mail provides an RESTful API for sending snail mail. This library eases interfacing with it.
A terminal read-only twitter client. It prints the tweets along with the nicknames to the terminal output.
captainslog is a command line utility that prints git logs by day and by author. This is useful when filling out time logs and emailing summaries of commits to clients.
Html based, ie client side, printing for orders. Different styles are invoice, packing slip and receipt (for receipt printer in shop). Easy to configure and adapt
This is a Ruby API and client for http://toodledo.com, a task management website. It implements all of the calls from Toodledo's developer API, and provides a nice wrapper around the functionality. The client allows you to work with Toodledo from the command line. It will work in either interactive or command line mode. You can also use the client in your shell scripts, or use the API directly as part of a web application. Custom private RSS feed? Want to have the Mac read out your top priority? Input tasks through Quicksilver? Print out tasks with a BetaBrite? It can all happen.
Fetches torrent file links from RSS feeds based on user-specified rules. The links can be printed to stdout or sent to Transmission for download, or the torrent files can be downloaded to a watchdir for processing by other torrent clients.
divshare ======== Description ----------- The divshare gem makes it easier to use the Divshare API. To use it, you need to create a Divshare account and sign up for an API key. Usage ----- Here's a brief walkthrough of the basic operations (see `examples/` for more information): require 'divshare' # Set these for your divshare account api_key = 'your api key' api_secret = 'your api secret' email = 'your login email address' password = 'your password' filename = 'a file you want to upload' client = Divshare::Client.new(api_key, api_secret) client.login(email, password) all_my_files = client.get_user_files all_my_files.each do |f| print "#{f.file_name} (#{f.file_size}) " puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}" end ticket = client.get_upload_ticket uploaded_id = client.upload(ticket, filename) puts "#{filename} uploaded with new id: #{uploaded_id}" client.logout Now, going through the same script step-by-step. Use your Divshare API key and secret (comes with key) to create a client: client = Divshare::Client.new(api_key, api_secret) Login using the credentials for your Divshare account: client.login(email, password) Get an array of all of your files: all_my_files = client.get_user_files Do something with the files: all_my_files.each do |f| print "#{f.file_name} (#{f.file_size}) " puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}" end Upload a file, and capture its id: ticket = client.get_upload_ticket uploaded_id = client.upload(ticket, filename) Logout client.logout Installation ------------ Install using rubygems: sudo gem install divshare Or clone from github git clone git://github.com/wasnotrice/divshare.git