1993 Djiboutian presidential election
Presidential elections were held in Djibouti on 7 May 1993. They followed the constitutional changes approved in a referendum the previous year, which re-introduced multi-party democracy, and were the first presidential elections to feature more than one candidate. Nevertheless, incumbent President Hassan Gouled Aptidon of the People's Rally for Progress won, taking 60.7% of the vote, based on a 51.25 turnout.[1]
![]() |
---|
This article is part of a series on the politics and government of Djibouti |
![]() |
Constitution |
Executive
|
Legislature
|
|
Related topics |
![]() ![]() |
Results
Candidate | Party | Votes | % |
---|---|---|---|
Hassan Gouled Aptidon | People's Rally for Progress | 45,162 | 60.7 |
Mohamed Djama Elabé | Democratic Renewal Party | 16,386 | 22.0 |
Aden Robleh Awaleh | National Democratic Party | 9,143 | 12.3 |
Mohamed Moussa Ali | Independent | 2,185 | 2.9 |
Ahmed Ibrahim Abdi | Independent | 1,466 | 1.9 |
Invalid/blank votes | 1,750 | - | |
Total | 76,092 | 100 | |
Source: Nohlen et al. |
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
References
- Nohlen, D, Krennerich, M & Thibaut, B (1999) Elections in Africa: A data handbook, p326 ISBN 0-19-829645-2
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.