forked from soimort/you-get
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
57 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
/build/ | ||
/dist/ | ||
/*.egg-info/ | ||
/MANIFEST | ||
*.egg-info/ | ||
*.py[cod] | ||
|
||
_*/ | ||
*.py[cod] | ||
|
||
*.download | ||
*.cmt.* | ||
|
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env python | ||
|
||
__version__ = '0.3.1rc' | ||
__date__ = '2013-02-12' |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
import unittest | ||
|
||
from you_get import * | ||
from you_get.main import url_to_module | ||
|
||
class YouGetTests(unittest.TestCase): | ||
|
||
def test_googleplus(self): | ||
for url in [ | ||
"http://plus.google.com/111438309227794971277/posts/So6bW37WWtp", | ||
"http://plus.google.com/114038303885145553998/posts/7Jkwa35HZu8", | ||
"http://plus.google.com/109544372058574620997/posts/Hn9P3Mbuyud", | ||
"http://plus.google.com/photos/109544372058574620997/albums/5835145047890484737/5835145057636064194", | ||
"http://plus.google.com/102663035987142737445/posts/jJRu43KQFT5", | ||
"http://plus.google.com/+%E5%B9%B3%E7%94%B0%E6%A2%A8%E5%A5%88/posts/jJRu43KQFT5", | ||
"http://plus.google.com/+平田梨奈/posts/jJRu43KQFT5", | ||
"http://plus.google.com/photos/102663035987142737445/albums/5844078581209509505/5844078587839097874", | ||
"http://plus.google.com/photos/+%E5%B9%B3%E7%94%B0%E6%A2%A8%E5%A5%88/albums/5844078581209509505/5844078587839097874", | ||
"http://plus.google.com/photos/+平田梨奈/albums/5844078581209509505/5844078587839097874", | ||
]: | ||
url_to_module(url).download(url, info_only = True) | ||
|
||
def test_mixcloud(self): | ||
for url in [ | ||
"http://www.mixcloud.com/beatbopz/beat-bopz-disco-mix/", | ||
"http://www.mixcloud.com/beatbopz/tokyo-taste-vol4/", | ||
"http://www.mixcloud.com/DJVadim/north-america-are-you-ready/", | ||
]: | ||
url_to_module(url).download(url, info_only = True) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from you_get import * | ||
from src.you_get import * | ||
|
||
if __name__ == "__main__": | ||
main() |
This file was deleted.
Oops, something went wrong.