Adolphe Dupeuty

Adolphe Ferdinand Dupeuty (born in Paris, 1828 – died in L'Haÿ-les-Roses 13 March 1884) was a French journalist and playwright, the son of Charles Dupeuty.

A secretary of the Paris Opera from 1850 to 1852, a columnist from 1856 at Le Figaro, Figaro-programme, Le Charivari and at the Événement where he was responsible for the Theater courier section, his plays were presented on the most important Parisian stages of the 19th century: Théâtre des Folies-Dramatiques, Théâtre Marigny, Théâtre du Palais-Royal etc.

Works

  • 1843: Une campagne à deux, comedy in 1 act, with Ernest Jaime
  • 1849: L'Hôtel de la Tête Noire, drama in 5 acts and 9 tableaux, with Eugène Cormon and Eugène Grangé, 1849
  • 1853: Les canotiers de la Seine, vaudeville aquatique in 3 acts, with Henri Thiéry
  • 1857: Fualdès, drama in five acts and eight tableaux, with Grangé
  • 1857: Arsène et Camille, vaudeville in 1 act, mingled with couplets, with Henri Thiéry
  • 1863: Un joli cocher, vaudeville in 1 act, with Thiéry
  • 1864: Où est la femme ?, foreword by Jules Noriac, E. Dentu
  • 1864: Le Carnaval des canotiers, vaudeville in 4 acts, with Charles Dupeuty, Amédée de Jallais and Thiéry
  • 1864: En classe ! Mesdemoiselles, folie-vaudeville in 1 act, with de Jallais
  • 1867: Le serment de bichette, vaudeville in 1 act, with Hippolyte Bedeau
  • 1874: Blanche de Césanne, proverbe in 1 act

Bibliography

  • Louis Gustave Vapereau, Dictionnaire universel des contemporains, 1865, p. 579
  • Ferdinand Natanael Staaff, La littérature française depuis la formation de la langue jusqu'à nos jours, 1884, p. 1243
gollark: Wrimes sounds like rhymesand also like Vimes
gollark: Best doesn't rhyme with worstThis is totally cursed.
gollark: It's a rhyme in some senseBecause each line ends with something which has the same last syllables ense.
gollark: It didn't manage much.
gollark: I had it autorap itself:```pythonimport requestsimport random pressimport fileinputimport re fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: 0 if upto + weight >= r: return choice upto += weight state 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 0 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(): been line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = re.sub(r"[^A-Za-z0-9 ]", " ", line).split(" ")[-1] print(line)```


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