Boganda National Museum

The Boganda National Museum, also known as the Barthélémy Boganda National Ethnographic Museum, is a national museum of the Central African Republic. It is located in the Rue du Languedoc region of the capital, Bangui. Named after the country's first prime minister, it was founded in the 1960s and remained open until the Central African Republic Civil War. Despite looting, the majority of the artifacts remain at the museum in boxes.

History

Situated in the Rue du Languedoc region of Bangui, Central African Republic, the Boganda National Museum was founded in 1964[1] and opened in 1966.[2] It was named after Barthélemy Boganda, the country’s first prime minister.[1] It has been closed to the public since 2013-14, however, due to the Central African Republic Civil War, leading to the building being ransacked during the period. Despite these attacks on the building, the majority of 3500 artifacts remain at the site, and have since been stored in large wooden crates within the building to protect them from looting.[3]

Collections

The museum holds artifacts which cover the culture and ethonography of the Central African Republic and hosts items from all 16 provinces of the country.[2] It has many collections covering the culture of the country, including one collection focussing on the ethnic group of pygmy people. Other sections of the collection focus on ethnography, archeology and natural history of the region. The culture is documented through pottery, historic coins, traditional African masks and musical instruments,[1] as well as weapons, hunting tools and religious objects.[4]

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

References

  1. "Boganda National Museum". MOMAA. Retrieved 26 July 2020.
  2. Allison, Simon (24 November 2017). "A broken museum, in a broken country: Meet the man trying to save CAR's history". Mail & Guardian. Retrieved 26 July 2020.
  3. Lorgerie, Paul (28 November 2018). "Museums in Africa series - The Bangui National Ethnographic Museum under reconstruction". Deutsche Welle (in French). Retrieved 26 July 2020.
  4. Tikkanen, Amy. "Bangui". Britannica. Retrieved 26 July 2020.

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