about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorYuce Tekol <yucetekol@gmail.com>2019-05-05 08:29:51 +0300
committerYuce Tekol <yucetekol@gmail.com>2019-05-05 08:29:51 +0300
commitf75c37e149a11625bac395117c7c354e364e154a (patch)
tree60b207f77a129f90b72958fc478ee7d5fbfe0935
parent968d5d7b886f894d4df08eef09d0fc21539f60fc (diff)
downloadpyopenbsd-f75c37e149a11625bac395117c7c354e364e154a.tar.gz
updated readme
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index b8b12a2..d178c33 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
 # openbsd
 
 Python bindings for some OpenBSD-specific APIs. Currently the following are supported:
+
 * `pledge`
 * `unveil`
 
@@ -35,7 +36,7 @@ openbsd.pledge("stdio rpath")
 print(open("/etc/resolv.conf"))
 ```
 
-Try removing `rpath` permission.
+Try removing the`rpath permission.
 
 ### unveil
 
@@ -48,6 +49,11 @@ Try opening `/bin/ksh`.
 
 Use `openbsd.unveil()` to lock down restrictions.
 
+
+## Similar Projects
+
+* [PyPledge](https://gitlab.com/i80and/pypledge): Python binding for the OpenBSD pledge(2) system call. Uses ctypes.
+
 ## License
 
 (c) 2019 Yuce Tekol