feffery_utils_components 0.1.29 → 0.2.0-a1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/DESCRIPTION CHANGED
@@ -1,6 +1,6 @@
1
1
  Package: fefferyUtilsComponents
2
2
  Title: Build more utility components for Plotly Dash.
3
- Version: 0.1.29
3
+ Version: 0.2.0-a1
4
4
  Description: Build more utility components for Plotly Dash.
5
5
  Depends: R (>= 3.0.2)
6
6
  Imports:
package/Project.toml CHANGED
@@ -2,7 +2,7 @@
2
2
  name = "FefferyUtilsComponents"
3
3
  uuid = "1b08a953-4be3-4667-9a23-ea89cd6d0d23"
4
4
  authors = ["CNFeffery <fefferypzy@gmail.com>"]
5
- version = "0.1.29"
5
+ version = "0.2.0-a1"
6
6
 
7
7
  [deps]
8
8
  Dash = "1b08a953-4be3-4667-9a23-3db579824955"
package/README.md CHANGED
@@ -1,2 +1,39 @@
1
- # feffery-utils-components
2
- Dash实用工具增广组件库
1
+ <p align="center">
2
+ <img src="./fuc-logo.svg" height=200></img>
3
+ </p>
4
+ <h1 align="center">feffery-utils-components</h1>
5
+ <div align="center">
6
+
7
+
8
+ [![GitHub](https://img.shields.io/github/license/plotly/dash.svg?color=dark-green)](https://github.com/plotly/dash/blob/master/LICENSE)
9
+ [![PyPI](https://img.shields.io/pypi/v/feffery-utils-components.svg?color=dark-green)](https://pypi.org/project/feffery-utils-components/)
10
+ [![Downloads](https://pepy.tech/badge/feffery-utils-components)](https://pepy.tech/project/feffery-utils-components)
11
+ [![Downloads](https://pepy.tech/badge/feffery-utils-components/month)](https://pepy.tech/project/feffery-utils-components)
12
+
13
+ </div>
14
+
15
+ `feffery-components`计划子项目,`Plotly Dash`第三方组件库,将超多实用辅助功能组件引入`Dash`的世界🥳,最新版本:`0.1.29`
16
+
17
+ ## 1 最新版本安装方式
18
+
19
+ ```bash
20
+ pip install feffery-utils-components -U
21
+ ```
22
+
23
+ ## 2 最新预发布版本安装方式
24
+
25
+ ```bash
26
+ pip install feffery-utils-components --pre -U
27
+ ```
28
+
29
+ ## 3 静态资源 CDN 加速方法
30
+
31
+ ```Python
32
+ # 非debug模式下对Dash()传入参数serve_locally=False会强制浏览器端从unpkg cdn加载各个依赖的
33
+ # xxx.min.js等静态资源,从而避免占用服务器带宽,适合中小型站点加速访问
34
+ app = dash.Dash(serve_locally=False)
35
+ ```
36
+
37
+ ## 4 在线文档
38
+
39
+ <a href='http://fuc.feffery.tech/' target='_blank'>文档地址</a>