I would like to
How I can do this in BioPython?
from Bio.Blast import NCBIWWW
fasta_string = open("myfasta").read()
result_handle = NCBIWWW.qblast("blastn", "nt", fasta_string)
print result_handle.read()
Above myfasta is your custom seq file which is provided for internet BLAST
you can later play with result_handle using NCBIXML as you wish to (ie to get top 100,remove duplicates)