Du Barry Was a Lady (1943)

Hat check man Louis Blore is in love with nightclub star May Daly. May, however, is in love with a poor dancer but wants to marry for money. When Louis wins the Irish Sweepstakes, he asks May to marry him and she accepts even though she doesnt love him. Soon after, Louis has an accident and gets knocked on the head, where he dreams that hes King Louis XV pursuing the infamous Madame Du Barry.

1943
Music
Fantasy
Comedy
6.0
/hYeTXHxdWw1UzR62zLE9n88N2dZ.jpg Poster

Cast

John George
John George
Villager (uncredited)
Paul Newlan
Paul Newlan
Marching Rebel on King Louis' Left (uncredited)
Emory Parnell
Emory Parnell
Gatekeeper (uncredited)
Sol Murgi
Sol Murgi
Villager (uncredited)
Red Skelton
Red Skelton
Louis Blore / King Louis XV
Chester Clute
Chester Clute
Dr. Pullit (uncredited)
Hugh Beaumont
Hugh Beaumont
Footman (uncredited)
Donald Meek
Donald Meek
Mr. Jones / Duc de Choiseul
Richard Alexander
Richard Alexander
Marching Rebel Behind King Louis (uncredited)
Ava Gardner
Ava Gardner
Perfume Girl (uncredited)
Sig Arno
Sig Arno
Nick (uncredited)
Cyril Ring
Cyril Ring
Man Watching Radio Interview (uncredited)
Douglass Dumbrille
Douglass Dumbrille
Willie / Duc de Rigor
Charles Judels
Charles Judels
Innkeeper (uncredited)
George Givot
George Givot
Cheezy / Count de Roquefort
Brooks Benedict
Brooks Benedict
Club Patron (uncredited)
Clara Blandick
Clara Blandick
Old Lady on Subway (uncredited)
Mitchell Lewis
Mitchell Lewis
Rebel Opening Door (uncredited)
Maurice Costello
Maurice Costello
Passerby (uncredited)
Michael Visaroff
Michael Visaroff
Flunky (uncredited)
Gene Kelly
Gene Kelly
Alec Howe / Black Arrow
Claire McDowell
Claire McDowell
Subway Passenger (uncredited)
Harry Hayden
Harry Hayden
Husband Checking Wife's Coat (uncredited)
Louise Beavers
Louise Beavers
Niagara
Pierre Watkin
Pierre Watkin
Ambrose (uncredited)
Christian J. Frank
Christian J. Frank
Lackey (uncredited)
William Forrest
William Forrest
Guard Captain (uncredited)
Andrew Tombes
Andrew Tombes
Mr. McGowan (uncredited)
Zero Mostel
Zero Mostel
Rami, the Swami / Taliostra
Lucille Ball
Lucille Ball
May Daly / Madame Du Barry
Cecil Cunningham
Cecil Cunningham
Wife Checking Her Coat (uncredited)
Lana Turner
Lana Turner
Lana Turner (uncredited)
Charles Coleman
Charles Coleman
Charlie (uncredited)
Eve Whitney
Eve Whitney
Miss August (uncredited)
Delos Jewkes
Delos Jewkes
Singer (uncredited)
Dell Henderson
Dell Henderson
Flunky (uncredited)
Marilyn Maxwell
Marilyn Maxwell
Miss February (uncredited)
Barbara Bedford
Barbara Bedford
Ambrose's Wife (uncredited)
Kay Williams
Kay Williams
Miss May (uncredited)
Rags Ragland
Rags Ragland
Charlie / Dauphin
Inez Cooper
Inez Cooper
Miss December (uncredited)
Dolly Haas
Dolly Haas
Miss April (uncredited)
Hazel Brooks
Hazel Brooks
Miss June (uncredited)
Virginia O'Brien
Virginia O'Brien
Ginny
Dick Haymes
Dick Haymes
Member of The Pied Pipers (uncredited)
Tommy Dorsey
Tommy Dorsey
Tommy Dorsey
Richard Ainley
Richard Ainley
Marching Rebel Behind King Louis (uncredited)
Kay Aldridge
Kay Aldridge
Mrs. McGowan (uncredited)
Willy Castello
Willy Castello
Flunky (uncredited)

Images

Du Barry Was a Lady Poster
Du Barry Was a Lady Poster

Detailed Information

General Information

Original Title: Du Barry Was a Lady

Creators: Hwang Dong-hyuk

Gender: Music, Fantasy, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $0.00

Revenue: $0.00

Awards and Recognitions

  • Emmy Award - Melhor Ator em Série Dramática (Lee Jung-jae)
  • Golden Globe - Melhor Ator Coadjuvante em Série (O Yeong-su)
  • Screen Actors Guild Award - Melhor Elenco em Série Dramática
  • Critics' Choice Television Award - Melhor Série Dramática

Interesting facts

  • A série se tornou a mais assistida da Netflix em seu lançamento.
  • O criador Hwang Dong-hyuk levou mais de 10 anos para desenvolver a série.
  • Os uniformes dos guardas foram inspirados em roupas de ginástica infantis.
  • O jogo "Batatinha Frita 1, 2, 3" é um jogo infantil coreano real.

API

Acesse os dados do filme/série através da nossa API REST. Use o endpoint abaixo para obter informações completas em formato JSON.

Endpoint da API

https://api.moviendb.com/v1/movie/43508

Parâmetros: {type} = "movie" ou "tv" | {id} = ID do filme/série

PHP com cURL

<?php
  $url = "https://api.moviendb.com/v1/movie/43508";

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $response = curl_exec($ch);
  $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  curl_close($ch);

  if ($httpCode === 200) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro: " . $httpCode;
}
?>

PHP com file_get_contents

<?php
$url = "https://api.moviendb.com/v1/movie/43508";

$response = file_get_contents($url);

if ($response !== false) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro ao fazer a requisição";
}
?>

JavaScript com Fetch

const url = 'https://api.moviendb.com/v1/movie/43508';

fetch(url, {
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'User-Agent': 'MovieDB-Client/1.0'
    }
})
.then(response => {
    if (!response.ok) {
        throw new Error(`HTTP error! status: ${response.status}`);
    }
    return response.json();
})
.then(data => {
    console.log(data);
    // Processar os dados aqui
})
.catch(error => {
    console.error('Erro:', error);
});

Exemplo de Resposta JSON

{
  "id": 93405,
  "name": "Round 6",
  "original_name": "오징어 게임",
  "overview": "Centenas de jogadores falidos aceitam um estranho convite...",
  "first_air_date": "2021-09-17",
  "vote_average": 8.0,
  "vote_count": 14250,
  "genres": [
    {
      "id": 18,
      "name": "Drama"
    },
    {
      "id": 9648,
      "name": "Mistério"
    }
  ],
  "seasons": [
    {
      "season_number": 1,
      "episode_count": 9,
      "air_date": "2021-09-17"
    }
  ],
  "created_by": [
    {
      "name": "Hwang Dong-hyuk"
    }
  ]
}