All Projects → micnews → apple-news

micnews / apple-news

Licence: other
A Node.js client for interacting with the Apple News API 📰

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to apple-news

dispatch
A publishing platform for modern newspapers.
Stars: ✭ 62 (+82.35%)
Mutual labels:  news, publishing
sonatype-publish-plugin
Gradle Plugin for publishing artifacts to Sonatype and Nexus
Stars: ✭ 17 (-50%)
Mutual labels:  publishing, publish
wisdom
🎁 Tool for publishing releases to github and npm
Stars: ✭ 16 (-52.94%)
Mutual labels:  publishing, publish
Bintray Publish
Super easy way to publish your Android and Java artifacts to bintray.
Stars: ✭ 97 (+185.29%)
Mutual labels:  publishing, publish
Github-Release-Action
Publish Github releases in an action
Stars: ✭ 100 (+194.12%)
Mutual labels:  publishing, publish
Web Publisher
Superdesk Publisher - the next generation publishing platform for journalists and newsrooms.
Stars: ✭ 82 (+141.18%)
Mutual labels:  news, publishing
in2publish core
in2publish Community Version
Stars: ✭ 38 (+11.76%)
Mutual labels:  publisher, publishing
newsemble
API for fetching data from news websites.
Stars: ✭ 42 (+23.53%)
Mutual labels:  news
AppleNeuralHash2ONNX
Convert Apple NeuralHash model for CSAM Detection to ONNX.
Stars: ✭ 1,457 (+4185.29%)
Mutual labels:  apple
tigase-swift
(M) Tigase Swift XMPP client library
Stars: ✭ 53 (+55.88%)
Mutual labels:  apple
pipeline
The Polytechnic's content management system
Stars: ✭ 17 (-50%)
Mutual labels:  news
ngx-deploy-docker
Deploy your Angular Application to a Docker registry directly from the Angular CLI! 🚀
Stars: ✭ 14 (-58.82%)
Mutual labels:  publish
Cryptography-and-Privacy
[Accepted] The WWDC19 Scholarship Application Project
Stars: ✭ 30 (-11.76%)
Mutual labels:  apple
aprenda-swift
Uma lista de conteúdos para você aprender Swift
Stars: ✭ 429 (+1161.76%)
Mutual labels:  apple
SARAddressBookBackup
An iOS library to take backup of the device contacts as .vcf file
Stars: ✭ 14 (-58.82%)
Mutual labels:  apple
newspaper3 usage overview
This repository provides usage examples for the Python module Newspaper3k.
Stars: ✭ 78 (+129.41%)
Mutual labels:  news
Fake-News-Detection-Project
Fake News Detection Final Year College Project with Project Report, PPT, Code, Research Paper and Documents.
Stars: ✭ 16 (-52.94%)
Mutual labels:  news
amqpextra
Golang AMQP on steroids. Reliable connection. Publisher. Consumer.
Stars: ✭ 59 (+73.53%)
Mutual labels:  publisher
MTJailed-Native
A terminal emulator with remote shell for non-jailbroken iOS devices
Stars: ✭ 24 (-29.41%)
Mutual labels:  apple
Flocking
An example showing how to use SwiftUI, Satin, Forge and Youi to simulate birds flocking via a compute particle system (n-body).
Stars: ✭ 63 (+85.29%)
Mutual labels:  apple

Apple News API client

API wrapper module for Apple News API https://developer.apple.com/library/ios/documentation/General/Conceptual/News_API_Ref/index.html

Supports creating, reading, updating, deleting, and searching articles. Also supports reading and listing sections, as well as reading channels!

For Node versions < 4, use apple-news@^1. For Node versions >= 4 use apple-news@^2

Install

npm install apple-news --save

Usage

var client = createClient({
  apiId: '<API-ID>',
  apiSecret: '<API-SECRET>'
});

Methods

client.readChannel ({ channelId }, cb)
client.listSections ({ channelId }, cb)
client.readSection ({ sectionId }, cb)
client.createArticle ({ channelId, article, bundleFiles, isPreview = true }, cb)
client.readArticle ({ articleId }, cb)
client.updateArticle ({ articleId, revision, article, isPreview = true }, cb)
client.deleteArticle ({ articleId }, cb)

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].