This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.test" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<uses-sdk android:minSdkVersion="8" /> | |
<application android:icon="@drawable/icon" android:label="@string/app_name"> | |
<activity android:name=".activity01" |
This file contains hidden or 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
# Created By Shakti | |
# This Script scrapes all links from the specific url and enerates a list of URL within a text file which can be run automatically to gather points on Indiatimes | |
#Basically a SCRAPPING Learning Experience | |
from bs4 import BeautifulSoup | |
import urllib2 | |
url=urllib2.urlopen("http://timesofindia.indiatimes.com/entertainment/hindi/") | |
content=url.read() | |
soup=BeautifulSoup(content) | |
import re |
NewerOlder