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
diff --git a/Ui_mainwindow.py b/Ui_mainwindow.py | |
index 995c127..bab1da9 100644 | |
--- a/Ui_mainwindow.py | |
+++ b/Ui_mainwindow.py | |
@@ -18,7 +18,7 @@ import feedparser | |
from audioplayer import AudioPlayer | |
#setup_all() | |
-sys.setappdefaultencoding('utf-8') | |
+#sys.setappdefaultencoding('utf-8') |
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
diff --git a/README.md b/README.md | |
index c98438b..24daf12 100644 | |
--- a/README.md | |
+++ b/README.md | |
@@ -18,7 +18,7 @@ To try out: | |
git submodule init | |
git submodule update | |
ruby create_test_data.rb http://admin:password@localhost:5894 | |
- node couchpubtato.js http://localhost:5984/feeds | |
+ node couchpubtato.js http://localhost:5984/nytimes |
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
#!/usr/bin/python | |
import time | |
import threading | |
import Queue | |
import StringIO | |
my_queue = Queue.Queue() | |
time_of_last_run = time.time() |
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
import urllib | |
# Get a file-like object for the Python Web site's home page. | |
f = urllib.urlopen("http://www.python.org") | |
# Read from the object, storing the page's contents in 's'. | |
s = f.read() | |
f.close() |