Imagine you are building an online movie recommender system where users can get personalized recommendations for movies and TV shows.
To start using the service, users should register by filling in a short form where they need to list at least one movie they liked in the past. In the future, users can add more movies or change ratings for the ones added previously to get better recommendations. Occasionally, some users might also want to delete their profile.
Write down the HTTP request that would add a new user to the database. Use 'http://movies.com/users'. Additionally, pass the following data about the new user: {'username': 'movielover', 'movie_name': 'Shrek', 'movie_rating': '10'}.
You do NOT have to import the requests module or create a variable for your request. A one-line solution is expected.