From 37bef583bf2e44a5edd93940e321ba860c61b3e2 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sun, 31 Dec 2023 21:15:13 +0530 Subject: [PATCH] feat: add readme --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..16329a8 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +[![status-badge](https://ci.batsense.net/api/badges/106/status.svg)](https://ci.batsense.net/repos/106) + +--- + +# mcaptcha_api: Python library to interact with mCaptcha server + +### Example + +```python +mcaptcha = MCaptcha(instance_url=INSTANCE_URL, sitekey=SITEKEY, secret=SECRET) +assert mcaptcha.verify(token=TOKEN) is True +```