[Tutor] Python program to search videos using Bing

2014-09-12 Thread aaron misquith
I have been trying to search videos using bing search engine. But every-time I try I get error HTTPError:HTTPError 403:Forbidden This is the code i am using: import urllib import urllib2 import json def main(): query = "'pyscripter'" print bing_search(query, 'Video') def bin

[Tutor] Unicode Encode Error

2014-06-17 Thread Aaron Misquith
I'm trying to obtain the questions present in StackOverflow for a particular tag. Whenever I try to run the program i get this *error:* Message File Name Line Position Traceback C:\Users\Aaron\Desktop\question.py 20 UnicodeEncodeError: 'ascii' codec can't encode character u'\u201c' in positi

Re: [Tutor] Library for .ppt to .txt conversion

2014-05-31 Thread Aaron Misquith
The only thing i want from the ppt's is text and ignoring all graphical representations. I need the text to perform various nltk operations. On Fri, May 30, 2014 at 11:54 PM, Alan Gauld wrote: > On 30/05/14 10:41, Aaron Misquith wrote: > >> Like pypdf is used to convert pdf

[Tutor] Library for .ppt to .txt conversion

2014-05-30 Thread Aaron Misquith
Like pypdf is used to convert pdf to text; is there any library that is used in converting .ppt files to .txt? Even some sample programs will be helpful. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.p

[Tutor] Performing an union of two files containing keywords

2014-02-17 Thread Aaron Misquith
I have 2 different text files. File1.txt contains: file RAMPython parser File2.txt contains: file1234 program I want to perform an union of these both files such that i get an output file3.txt which contains: file RAMPython parser1234 program The program that i'm working on just combines t

[Tutor] How to create a GUI for python using tkinter

2013-02-05 Thread Aaron Misquith
I have attached a python program with this mail which peforms following operations: 1.Logs in to facebook. 2.Asks the user for access tokens. 3.Gets the friend list of the user. 4.outputs the friend list as pdf. My Problems regarding the above program are: 1.I want to display the names of my frien

[Tutor] Facebook login using python

2013-01-28 Thread Aaron Misquith
I am working on a program which is used to login to facebook, get my friend lists using graph api and export them into pdf format. So far i'm able to login with facebook and get the friend list. I would like if someone is able to provide me a code to export the output to pdf. Another thing is that