All Projects → bovine → rss2trello

bovine / rss2trello

Licence: other
Automatically check your favorite RSS feed for new articles and create Trello cards for each one.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to rss2trello

trello-full-backup
Python script to backup everything from Trello: boards, lists, cards and attachments
Stars: ✭ 119 (+310.34%)
Mutual labels:  trello
Unity-Trello
☑️️ Generate Trello cards directly from Unity
Stars: ✭ 34 (+17.24%)
Mutual labels:  trello
twitter-to-rss
Simple python script to parse twitter feed to generate a rss feed.
Stars: ✭ 15 (-48.28%)
Mutual labels:  rss-feed
fulltextrssplz
Make rss full text.
Stars: ✭ 25 (-13.79%)
Mutual labels:  rss-feed
dlang-bot
dlang-bot for automated bugzilla, github, and trello references
Stars: ✭ 20 (-31.03%)
Mutual labels:  trello
GNews
A Happy and lightweight Python Package that Provides an API to search for articles on Google News and returns a JSON response.
Stars: ✭ 271 (+834.48%)
Mutual labels:  rss-feed
vuejs-trello-clone
A Trello clone using VueJS
Stars: ✭ 85 (+193.1%)
Mutual labels:  trello
tidyRSS
An R package for extracting 'tidy' data frames from RSS, Atom, JSON and geoRSS feeds
Stars: ✭ 62 (+113.79%)
Mutual labels:  rss-feed
ttrss ynh
Tiny Tiny RSS package for YunoHost
Stars: ✭ 17 (-41.38%)
Mutual labels:  rss-feed
goeland
An alternative to rss2email written in golang with many filters
Stars: ✭ 78 (+168.97%)
Mutual labels:  rss-feed
bug2trello
A Chrome extension to add bugs/issues to a Trello board
Stars: ✭ 21 (-27.59%)
Mutual labels:  trello
trafilatura
Python & command-line tool to gather text on the Web: web crawling/scraping, extraction of text, metadata, comments
Stars: ✭ 711 (+2351.72%)
Mutual labels:  rss-feed
Trellis
A simplified Trello clone built with React, Redux, Node, Express and MongoDB.
Stars: ✭ 116 (+300%)
Mutual labels:  trello
tickety-tick
A browser extension that helps you name branches and write better commit messages
Stars: ✭ 55 (+89.66%)
Mutual labels:  trello
gBoards
Trello like Angular Application
Stars: ✭ 21 (-27.59%)
Mutual labels:  trello
github-stars-feed
Get the latest feed of GitHub Stars out there! 🌟 ⭐ ✨
Stars: ✭ 30 (+3.45%)
Mutual labels:  rss-feed
layout-trello
Chrome extension that allows Trello lists to be displayed vertically or in a grid.
Stars: ✭ 65 (+124.14%)
Mutual labels:  trello
RetrofitRssConverterFactory
A Retrofit 2 converter which parses Rss feeds
Stars: ✭ 73 (+151.72%)
Mutual labels:  rss-feed
rss-chan
A telegram RSS feed reader bot, written using python and feedparser.
Stars: ✭ 70 (+141.38%)
Mutual labels:  rss-feed
Trello-
🏷️看板、todolist、trello、vue
Stars: ✭ 22 (-24.14%)
Mutual labels:  trello

rss2trello

This is a Node.JS application that checks your favorite RSS feed for new items, and posts any new articles as new cards in Trello.

Trello is a free project management website from Fog Creek Software that allows you to track tasks by using a "Kanban" system involving cards, lists, and boards.

Possible uses of rss2trello include:

  • recruiters could monitor job candidates by using a Craigslist.org RSS feed for new applicants and allow hiring staff to make comments and move cards into lists for "to interview", "to make offer", "rejected", etc. http://houston.craigslist.org/sof/index.rss

  • realtors, home buyers, or business partners could monitor new house listings using a custom RSS feed from Trulia.com and move cards into lists for "to visit", "to research further", "to make offer", "rejected", etc. http://www.trulia.com/tools/rss/

  • software managers could automatically add new bugs that appear in their defect tracking system and use Trello as a higher-level workflow organization tool to prioritize tasks.

Using rss2trello

Copy the config.js.sample to config.js and make your customizations to your copy. You will need to follow the instructions in the section below to get your Trello access token.

To run the rss2trello application once, just run:

nodejs main.js

To periodically check for new items, simply use a crontab entry to re-run the rss2trello script, with something like this:

0 */4 * * * cd ~/rss2trello && nodejs main.js

Getting your Trello access token

To get a read/write token, visit this page while logged in: https://trello.com/1/appKey/generate

Copy and paste the key into the config.js file as config.trello_key. Also paste the key into the "..." portion of the following URL and click the button: https://trello.com/1/connect?key=...&name=rss2trello&response_type=token&scope=read,write

Copy and paste the resulting token into the config.js file as config.trello_token.

The config file also needs the identifier of the Trello board provided as config.board_id, which is the hexadecimal portion of the trello.com URL after you have clicked on the board to view it on their website.

The value config.target_list_name in the config file is the exact name of the list that you have already created within the board.

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