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
using Android.App; | |
using Android.Widget; | |
using Android.OS; | |
using Android.Speech; | |
using Android.Content; | |
using System; | |
using System.Collections.Generic; | |
namespace Quizer.Droid | |
{ |
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
from bs4 import BeautifulSoup | |
import urllib.request | |
import sys | |
period = sys.argv[1] | |
class AppURLopener(urllib.request.FancyURLopener): | |
version = "Mozilla/5.0" | |
opener = AppURLopener() |