Anish Kuruvilla

Anish Kuruvilla is an Indian film director and actor from Telangana. He predominantly works in the Telugu film industry.[1][2]

Anish Kuruvilla
Anish Kuruvilla in Cinivaram Programme
Born
Anish Yohan Kuruvilla

OccupationActor, director

Before becoming director, he worked as an executive producer with Sekhar Kammula, and played the lead role in Dollar Dreams, and supporting role in Anand. After taking a break as an actor for 12 years, he played a crucial role in 2016 film Pelli Choopulu. He also appeared in the biography film of Indian cricketer M. S. Dhoni.[3]

Early life

Anish was born into a Malayali family and grew up in Hyderabad. He did his schooling at The Hyderabad Public School, Ramanthapur.[4]

Career

He played the lead role in Sekhar Kammula's debut film Dollar Dreams, and supporting role in the block buster film Anand.[5] After 12 years gap, he acted in 2016 film, Pelli Choopulu.[6] He worked with Sekhar Kammula, Nagesh Kukunoor, and Manishankar before his directorial debut[4] Avakai Biryani produced by Sekhar Kammula, and Ko Antey Koti produced by Sharwanand who was also the lead actor.[7][8]

Filmography

As actor

Year Title Role Language Notes
2000Dollar DreamsSrinuTelugu
2004AnandRajuTelugu
2016Pelli ChoopuluPrashanth's father-in-lawTelugu
M. S. Dhoni - The Untold StoryHindi
2017Nenu LocalCollege PrincipalTelugu
VelaikkaranJayaramTamil
JawaanDRDO scientistTelugu
HelloPriya's fatherTelugu
2018Bharat Ane NenuChief Secretary of AP SrivastavaTelugu
Tej I Love YouNandini's fatherTelugu
GoodachariDamodarTelugu
2019The Accidental Prime MinisterT. K. A. NairHindi
Vijay Superum PournamiyumSonam's fatherMalayalam
MaharshiCollege DeanTelugu
Game OverPsychiatristTamil
Telugu
RajdhoothPriya's fatherTelugu
Gang LeaderPolice OfficerTelugu
BigilDelhi Police officerTamil
Operation Gold FishAnish KuruvillaTelugu
2020Choosi ChoodangaaneSiddu's fatherTelugu
Kannum Kannum KollaiyadithaalSooraj MehtaTamil
MadhaTelugu
PushpaTelugu

As director

gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```

References

  1. Sunita Chowdhary, Y. "Anish Kuruvilla moves to the forefront". thehindu.com. Kasturi and Sons. Retrieved 25 October 2016.
  2. "Anish Kuruvilla set to make his debut in Malayalam". 123telugu.com. Mallemala Entertainments. Retrieved 25 October 2016.
  3. "Pelli Choopulu actor Anish Kuruvilla in Bollywood!". tfpc.in. Telugu Film Producers Council. Archived from the original on 25 October 2016. Retrieved 25 October 2016.
  4. Sekhar, Kammula. "Anish Kuruvilla Interview by Sekhar Kammula". idlebrain.com. G.V. Retrieved 25 October 2016.
  5. Sangeetha Devi, Dundoo. "Over to them". thehindu.com. Kasturi and Sons. Retrieved 25 October 2016.
  6. Viswanath, V. "Pelli Choopulu: Movie Review". telugucinema.com. Retrieved 25 October 2016.
  7. "నన్ను నిలబెట్టే సినిమా కో అంటే కోటి". suryaa.com. Surya News. Retrieved 25 October 2016.
  8. "Anish Kuruvilla Height, Weight, Age, Family, Wife, Biography, Movies List, Controversies". teluguhitflopmovieslist.blogspot.com. Telugu Celebrities Biography. Retrieved 30 January 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.