This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple python script to upload a file to Trello. | |
This script is a demo - done to show how to do it - it doesn't have | |
much practical purpose as it requires the use of a number of tokens | |
and identifiers which you can only get programmatically or by visiting | |
the website (in which case you may as well upload the attachment directly.) | |
You should read the Trello API docs prior to using this: | |
https://trello.com/docs/gettingstarted/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!isset($_GET['url'])) { | |
?> | |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Youtube RSS creator</title> | |
<form> | |
<p>Create an RSS feed for the videos on the following page: | |
<p><input name="url" placeholder="E.g. https://www.youtube.com/user/scishow/videos" style="width: 30em"> |