19th Kolkata International Film Festival

The 19th Annual Kolkata Film Festival was held on 10 to 17 November 2013. The Kolkata International Film Festival (KIFF) is an annual film festival held in Kolkata, West Bengal, India. The 19th KIFF, was inaugurated by Mr. Amitabh Bachchan on 10 November and was attended by a number of luminaries including Shah Rukh Khan - also the state's brand ambassador as well as actor Kamal Haasan in the presence of Mamata Banerjee who is the current Chief Minister of West Bengal.

19th Kolkata International Film Festival
Opening filmTaak Jhaank (by Rituparno Ghosh)[1][2]
LocationKolkata, West Bengal, India
Founded1995
No. of films8 days . 63 countries . 152 directors . 189 films.
Festival date10 November 2013 (2013-11-10)
17 November 2013 (2013-11-17)
Websitekff.in

Categories

  • Inaugural Film
  • Centenary Tribute
  • Great Master
  • Homage
  • Retrospective
  • New Horizon
  • Focus : South East Asia
  • 100 Years of Indian cinema
  • Special Tribute
  • Cinema International
  • Shades of black and white
  • Special Screening
  • Asian Select DreamZ The Movie directed by Sumana Mukherjee [3]
  • Indian Select
  • Children Screening
  • Golden Jubilee
  • Student Shorts
gollark: Drugs are UNLEGAL!
gollark: I tried that.
gollark: `False`
gollark: `True`
gollark: ```pythonimport requestsimport randomimport fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: if upto + weight >= r: return choice upto += weight assert False, "Shouldn't get here"def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json()def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options)last = Nonefor line in fileinput.input(): line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = line.replace(".", "").split(" ")[-1] print(line)```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.