[CONTRIBUTING.md] Remove the section about embedding; that is not applicable for...
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 12 Dec 2014 15:47:22 +0000 (16:47 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 12 Dec 2014 15:47:22 +0000 (16:47 +0100)
CONTRIBUTING.md
devscripts/make_contributing.py

index 48840f8f67dee64e0ca7e99cc24cfc6af515a60a..0ff7b395a9f71e2aa2a9e1f20417d34e1f0fbcf6 100644 (file)
@@ -134,17 +134,3 @@ If you want to add support for a new site, you can follow this quick list (assum
 
 In any case, thank you very much for your contributions!
 
-# EMBEDDING YOUTUBE-DL
-
-youtube-dl makes the best effort to be a good command-line program, and thus should be callable from any programming language. If you encounter any problems parsing its output, feel free to [create a report](https://github.com/rg3/youtube-dl/issues/new).
-
-From a Python program, you can embed youtube-dl in a more powerful fashion, like this:
-
-    import youtube_dl
-
-    ydl_opts = {}
-    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
-        ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])
-
-Most likely, you'll want to use various options. For a list of what can be done, have a look at [youtube_dl/YoutubeDL.py](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L69). For a start, if you want to intercept youtube-dl's output, set a `logger` object.
-
index 99451c5688223cde18bbe5f7bd45fd60a2ff9345..5fa8cf8510583d7c9b19a7ad06c82f6768050abc 100755 (executable)
@@ -20,7 +20,8 @@ def main():
     bug_text = re.search(
         r'(?s)#\s*BUGS\s*[^\n]*\s*(.*?)#\s*COPYRIGHT', readme).group(1)
     dev_text = re.search(
-        r'(?s)(#\s*DEVELOPER INSTRUCTIONS.*?)#\s*BUGS', readme).group(1)
+        r'(?s)(#\s*DEVELOPER INSTRUCTIONS.*?)#\s*EMBEDDING YOUTUBE-DL',
+        readme).group(1)
 
     out = bug_text + dev_text