scanii.com的python包装器

PyScanii的Python项目详细描述


pyscanii

用于使用scanii.comapi的python模块。

安装/升级

$ pip install -U PyScanii

使用量

>>>fromPyScaniiimportPyScanii>>>pyscanii=PyScanii('SOMEAPIKEY','SECRET',verbose=True)# Verbose is good while integrating / debugging.# You can ping to see if things are set up properly.>>>pyscanii.ping(){u'message':u'pong',u'key':u'SOMEAPIKEY'}# There is a .test method that sends the EICAR test string.# WARNING: Costs a scan credit.>>>pyscanii.test()# It will populate the files list like any other scan.>>>pyscanii.files[0].infectedTrue# .scan() is the main method.# It can accept single strings or paths.# It can also accept a list or tuple of either of those things.>>>pyscanii.scan('X5O!P%@AP[4\\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*')# The files property contains a list of ScanFile instances:>>>pyscanii.files[0](563ef4b7836060b3bb9d0cba3e6a5f84)string.bin-Infected:True-Findings:[u'av.eicar-test-signature']>>>str(pyscanii.files[0])'{"content_length": 68, "infected": true, "name": "string.bin", "content_type": "text/plain", "checksum": "3395856ce81f2b7382dee72602f798b642f14140", "metadata": {}, "id": "563ef4b7836060b3bb9d0cba3e6a5f84", "findings": ["av.eicar-test-signature"], "creation_date": "2016-04-05T14:57:35.989Z"}'>>>pyscanii.files[0].infectedTrue>>>pyscanii.files[0].findings[u'av.eicar-test-signature']# You can also, of course, scan file paths:>>>pyscanii.scan('~/Desktop/IMG_0011.jpeg')>>>pyscanii.files[0].infectedFalse>>>pyscanii.files[0].findings[]# The last_file property is good when you've only scanned one file:>>>pyscanii.last_file(d0e6345ea2ceb9c1f260c8e249f933df)~/Desktop/IMG_0011.jpeg-Infected:False-Findings:[]>>>pyscanii.last_file.infectedFalse

更改

版本1.1.3-2016年4月6日

  • First production version.

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
如何在Eclipse中设置Java路径,以便在外部驱动器上运行它?   在windows上使用Java服务包装器GUI与桌面交互   java是与此字符序列不匹配的正则表达式   java无法使用kafka管理客户端API创建具有所需分区的kafka主题   java基于单个单元格值获取整个excel行   当使用Spring的构造函数注入时,java bean是否在构造函数中完全初始化?   java重置LineNumberReader的计数器   将字符串从Java文件传递到jQuery   安卓在来自不同Java类文件的活动中祝酒   java在使用mvvm时如何在zk中更新progressmeter   使用regex获取由“”Java包围的值   使用tester类的java猜谜游戏   api响应的java POJO,其密钥为“”   java正则表达式,用于匹配长度大于n的字母和数字字符串?   java如何使用Json保存和恢复RecyclerView项的位置   在Java中用字符代码替换字符串   Jenkins中的java PermGen错误   java swing panel问题   boolean在Java中,false如何可能等于true   java如何使用Servlet从HTML表单中检索“分组”项?