在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为

Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:2.30M
  • 下载次数:4
  • 浏览次数:12
  • 发布时间:2023-11-04
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python 零基础 实时 基础 引擎

实例介绍

【实例简介】Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为
陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── aswan-master
│   ├── CONTRIBUTORS
│   ├── LICENSE
│   ├── README.md
│   ├── builtin_funcs
│   │   ├── __init__.py
│   │   ├── base.py
│   │   └── sample.py
│   ├── clients
│   │   ├── __init__.py
│   │   ├── mongo_client.py
│   │   ├── mysql_client.py
│   │   └── redis_client.py
│   ├── config
│   │   ├── __init__.py
│   │   ├── base.py
│   │   ├── develop.py
│   │   ├── product.py
│   │   └── test.py
│   ├── log
│   │   ├── __init__.py
│   │   ├── handler.py
│   │   └── logger.py
│   ├── requirements.txt
│   ├── risk_models
│   │   ├── __init__.py
│   │   ├── cache.py
│   │   ├── exceptions.py
│   │   ├── menu.py
│   │   ├── rule.py
│   │   ├── source.py
│   │   └── strategy.py
│   ├── risk_server.py
│   ├── server
│   │   ├── __init__.py
│   │   ├── base.py
│   │   ├── query.py
│   │   └── report.py
│   ├── start.sh
│   ├── tests
│   │   ├── __init__.py
│   │   ├── run_test.py
│   │   ├── test_builtin_funcs
│   │   │   ├── __init__.py
│   │   │   └── test_buintin_funcs.py
│   │   └── test_risk_models
│   │       ├── __init__.py
│   │       ├── test_menu.py
│   │       └── test_rule.py
│   └── www
│       ├── __init__.py
│       ├── bk_config
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── management
│       │   │   ├── __init__.py
│       │   │   └── commands
│       │   │       ├── __init__.py
│       │   │       └── init_risk_data.py
│       │   ├── models.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── config
│       │   │       └── source_list.html
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── core
│       │   ├── __init__.py
│       │   ├── columns.py
│       │   ├── forms.py
│       │   ├── generic.py
│       │   ├── lru.py
│       │   ├── pymongo_client.py
│       │   ├── redis_client.py
│       │   ├── testcase.py
│       │   └── utils.py
│       ├── log_manage
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── management
│       │   │   ├── __init__.py
│       │   │   └── commands
│       │   │       ├── __init__.py
│       │   │       └── persistence_hit_log.py
│       │   ├── migrations
│       │   │   ├── 0001_initial.py
│       │   │   └── __init__.py
│       │   ├── models.py
│       │   ├── signals.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── log_manage
│       │   │       ├── access_audit.html
│       │   │       └── hit_list_detail.html
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── manage.py
│       ├── menu
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── models.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── menu
│       │   │       ├── batch_delete.html
│       │   │       ├── event_list.html
│       │   │       ├── ip_list.html
│       │   │       ├── pay_list.html
│       │   │       ├── phone_list.html
│       │   │       ├── uid_list.html
│       │   │       └── userid_list.html
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── permissions
│       │   ├── __init__.py
│       │   ├── context_processors.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── middleware.py
│       │   ├── models.py
│       │   ├── permission.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── permissions
│       │   │       ├── group_list.html
│       │   │       ├── group_update.html
│       │   │       ├── uri_collection.html
│       │   │       ├── uri_group_detail.html
│       │   │       ├── uri_group_list.html
│       │   │       ├── uri_group_update.html
│       │   │       ├── user_list.html
│       │   │       └── user_update.html
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── risk_auth
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── management
│       │   │   ├── __init__.py
│       │   │   └── commands
│       │   │       └── __init__.py
│       │   ├── models.py
│       │   ├── templates
│       │   │   └── risk_auth
│       │   │       ├── index.html
│       │   │       └── login.html
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── rule
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── models.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── rule
│       │   │       ├── rules_create.html
│       │   │       ├── rules_detail.html
│       │   │       ├── rules_edit.html
│       │   │       ├── rules_list.html
│       │   │       └── rules_test.html
│       │   ├── templatetags
│       │   │   ├── __init__.py
│       │   │   └── reverse_tags.py
│       │   ├── test.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── settings
│       │   ├── __init__.py
│       │   ├── local_settings
│       │   │   ├── __init__.py
│       │   │   ├── develop.py
│       │   │   ├── product.py
│       │   │   └── test.py
│       │   └── settings.py
│       ├── static
│       │   ├── ckeditor
│       │   │   └── ckeditor
│       │   │       └── config.js
│       │   ├── css
│       │   │   ├── bootstrap.min.css
│       │   │   ├── filter-form.css
│       │   │   ├── font-awesome.css
│       │   │   ├── font-awesome.min.css
│       │   │   ├── jquery-ui.css
│       │   │   ├── jquery.searchableSelect.css
│       │   │   ├── main.css
│       │   │   ├── moji.css
│       │   │   ├── multi-select.css
│       │   │   ├── nav.css
│       │   │   ├── pagination.css
│       │   │   ├── patterns
│       │   │   │   ├── header-profile.png
│       │   │   │   └── shattered.png
│       │   │   ├── plugins
│       │   │   │   └── sweetalert
│       │   │   │       └── sweetalert.css
│       │   │   └── verify.css
│       │   ├── fonts
│       │   │   ├── FontAwesome.otf
│       │   │   ├── fontawesome-webfont.eot
│       │   │   ├── fontawesome-webfont.svg
│       │   │   ├── fontawesome-webfont.ttf
│       │   │   ├── fontawesome-webfont.woff
│       │   │   ├── fontawesome-webfont.woff2
│       │   │   ├── glyphicons-halflings-regular.eot
│       │   │   ├── glyphicons-halflings-regular.svg
│       │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   ├── glyphicons-halflings-regular.woff
│       │   │   └── glyphicons-halflings-regular.woff2
│       │   ├── img
│       │   │   ├── favicon.ico
│       │   │   ├── icon.png
│       │   │   └── wiki
│       │   │       ├── architecture.jpg
│       │   │       ├── audit_log.png
│       │   │       ├── bool_strategy.png
│       │   │       ├── data_source.png
│       │   │       ├── freq_strategy.png
│       │   │       ├── hit_log.png
│       │   │       ├── menu.png
│       │   │       ├── menu_strategy.png
│       │   │       ├── permission_manage.png
│       │   │       ├── rule_manage.png
│       │   │       ├── url_group_manage.png
│       │   │       ├── user_manage.png
│       │   │       └── user_strategy.png
│       │   ├── js
│       │   │   ├── bootstrap-modal.js
│       │   │   ├── bootstrap-modalmanager.js
│       │   │   ├── content.min.js
│       │   │   ├── csrf.js
│       │   │   ├── default_time.js
│       │   │   ├── jquery-ui-1.10.4.min.js
│       │   │   ├── jquery.dynamic-rows.min.js
│       │   │   ├── jquery.multi-select.js
│       │   │   ├── jquery.quicksearch.js
│       │   │   ├── jquery.searchableSelect.js
│       │   │   ├── main.js
│       │   │   ├── plugins
│       │   │   │   ├── layer
│       │   │   │   │   ├── extend
│       │   │   │   │   │   └── layer.ext.js
│       │   │   │   │   ├── laydate
│       │   │   │   │   │   ├── laydate.js
│       │   │   │   │   │   ├── need
│       │   │   │   │   │   │   └── laydate.css
│       │   │   │   │   │   └── skins
│       │   │   │   │   │       └── default
│       │   │   │   │   │           ├── icon.png
│       │   │   │   │   │           └── laydate.css
│       │   │   │   │   ├── layer.min.js
│       │   │   │   │   ├── layim
│       │   │   │   │   │   ├── layim.css
│       │   │   │   │   │   ├── layim.js
│       │   │   │   │   │   └── loading.gif
│       │   │   │   │   └── skin
│       │   │   │   │       └── layer.css
│       │   │   │   ├── metisMenu
│       │   │   │   │   └── jquery.metisMenu.js
│       │   │   │   ├── pace
│       │   │   │   │   └── pace.min.js
│       │   │   │   ├── slimscroll
│       │   │   │   │   └── jquery.slimscroll.min.js
│       │   │   │   └── sweetalert
│       │   │   │       └── sweetalert.min.js
│       │   │   ├── rule_map_strategygroup.js
│       │   │   ├── switch_left_right.png
│       │   │   ├── uri_scene.js
│       │   │   └── vendor
│       │   │       ├── bootstrap.min.js
│       │   │       └── jquery.min.js
│       │   └── widget
│       │       └── datetimepicker
│       │           ├── bootstrap-datetimepicker.css
│       │           ├── bootstrap-datetimepicker.js
│       │           └── datetimepicker.css
│       ├── strategy
│       │   ├── __init__.py
│       │   ├── forms.py
│       │   ├── init_data.py
│       │   ├── largest_period.py
│       │   ├── models.py
│       │   ├── tables.py
│       │   ├── templates
│       │   │   └── strategy
│       │   │       ├── bool_strategy_create.html
│       │   │       ├── bool_strategy_list.html
│       │   │       ├── bool_strategy_test.html
│       │   │       ├── fast_strategy_list.html
│       │   │       ├── freq_strategy_create.html
│       │   │       ├── freq_strategy_list.html
│       │   │       ├── freq_strategy_test.html
│       │   │       ├── menu_strategy_create.html
│       │   │       ├── menu_strategy_list.html
│       │   │       ├── menu_strategy_test.html
│       │   │       ├── user_strategy_create.html
│       │   │       ├── user_strategy_list.html
│       │   │       └── user_strategy_test.html
│       │   ├── templatetags
│       │   │   ├── __init__.py
│       │   │   └── reverse_tags.py
│       │   ├── tests.py
│       │   ├── urls.py
│       │   └── views.py
│       ├── templates
│       │   ├── 403.html
│       │   ├── 404.html
│       │   ├── 500.html
│       │   ├── base.html
│       │   ├── datepicker.html
│       │   ├── error_page.html
│       │   ├── footer.html
│       │   ├── pagination.html
│       │   ├── siderbar.html
│       │   └── table.html
│       ├── urls.py
│       └── wsgi.py
└── 好例子网_Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为.zip

72 directories, 255 files


实例下载地址

Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警