
ثبّت حزمة metashield_clean_up باستخدام pip::
pip install metashield_clean_up
مثال لتنظيف ملف.
.. code-block:: python
import time
import base64
from metashield_clean_up.api import MetashieldCleanUp
api = MetashieldCleanUp("REPLACE_APP_ID_HERE", "REPLACE_SECRET_KEY_HERE")
with open("file.pdf", "rb") as f:
response = api.clean_file(f.read(), "file.pdf")
clean_id = response.data["cleanId"]
time.sleep(5) # wait until file is cleaned
response2 = api.get_clean_result(clean_id)
decoded = base64.b64decode(response2.data[clean_id])
with open("cleanFile.pdf", "w") as f:
f.write(decoded)
قبل تشغيل الاختبارات، استبدل بعض الإعدادات في وحدة tests/settings_default.py.
تم بناء الاختبارات باستخدام Python Unittest، نفّذ الأوامر التالية::
python -m unittest discover tests