Skip to content

daksharma/kotlintainmentserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kotlintainment Server

Search for Movies, Tv Shows, Actors with basic graphql around TMDBSimple library for python

Search movie, person, show using an id.

Search with user specified input.

note: make sure to have The Movie DB Api Key. Get it Here

Libraries Used:

Flask

Flask-GraphQL

Graphene

TMDBSimple

Hosted on Google App Engine

Check the link Here

Test Example:

copy paste this example in the graphiql viewer.

query {
  movie(id:603) {
    title
    tagline
    overview
    revenue
    budget
    belongsToCollection {
      name
    }
    credits {
      cast {
        name
        character
      }
    }
  }
  
  tvseries(tvId:1399) {
    name
    overview
    numberOfEpisodes
    numberOfSeasons
    credits {
      cast {
        name
        character
      }
    }
  }
  
  person(id: 6384) {
    name
    biography
    placeOfBirth
    birthday
    credits {
      cast {
        title
        character
      }
    }
  }
  
  search(searchString: "007") {
    id
    titleName
    overview
    mediaType
  }
}
note: ongoing project

About

Search Movies, Actors, TV Shows and user strings using GraphQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages