upload data from oss to maxcompute and import to matrix lib table
Project description
upload oss data to maxcompute
initialize maxcompute account
- Install Aliyun CLI: Install guide
- run the aliyun configure command to setup account
$ aliyun configure
Configuring profile 'default' ...
Aliyun Access Key ID [None]: <Your AccessKey ID>
Aliyun Access Key Secret [None]: <Your AccessKey Secret>
Default Region Id [None]: cn-zhangjiakou
Default output format [json]: json
Default Language [zh]: zh
define data source
define data source:
{
"$schema": "../data2cloud/schemas/json/data-config-schema.json",
"vender": "csmar",
"meta_table": "metadata_csmar",
"data_type": {
"type": "oss",
"location": "oss://oss-cn-zhangjiakou-internal.aliyuncs.com/dteam2022-data/source_data/csmar"
},
"data_versions": [
{
"source": "cg_ybasic",
"versions": [
"20240506"
]
}
],
"data": [
{
"source": "cg_ybasic",
"target_table": "ods_csmar_cg_ybasic",
"source_name": "治理综合信息文件",
"meta": [
{
"col_order": 1,
"col_name": "Stkcd",
"col_type": "Nvarchar",
"col_name_desc": "证券代码",
},
{
"col_order": 2,
"col_name": "Reptdt",
"col_type": "Datetime",
"col_name_desc": "统计截止日期",
},
{
"col_order": 4,
"col_name": "Y0301b",
"col_type": "decimal",
"col_name_desc": "股本结构是否变化",
"col_desc": "1=未变化,2=有变化。"
},
{
"col_order": 16,
"col_name": "ManagerHoldsharesRatio",
"col_type": "decimal",
"col_name_desc": "总经理持股比例",
"col_unit": "%"
},
...
]
},
],
"matrix": [{
"source": "cg_ybasic",
"target_code_prefix": "cg_ybasic",
"source_col_prefix": "Y",
"eff_date_col": "Reptdt",
"firm_col": "stkcd"
}
]
}
upload data and import matrix
from pathlib import Path
from data2cloud.data_uploader import DataUploader, MatrixImporter, DataConfigParser
config_file = f"{Path(__file__).resolve().parent}/datasource/csmar.json"
uploader = DataUploader(config_file)
uploader.upload("cg_ybasic") # uploader.upload_all()
# import matrix
m_importer = MatrixImporter(config_file)
m_importer.import_matrix("cg_ybasic")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
data2cloud-0.0.2.tar.gz
(13.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file data2cloud-0.0.2.tar.gz.
File metadata
- Download URL: data2cloud-0.0.2.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d53212a546d9b13eb1775439d25f92575927291b8295510f00b0156385b6daa6
|
|
| MD5 |
ea7729fbfdf4c1e2ee663768d963fac7
|
|
| BLAKE2b-256 |
40be7d4ed09e6e374350fea7564523fe118eea2e597b77b1f9a07e6ea3780b9c
|
File details
Details for the file data2cloud-0.0.2-py3-none-any.whl.
File metadata
- Download URL: data2cloud-0.0.2-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9fc280da682408b28bbc841347367616de010ec94a063c22009c69ff8b478fc
|
|
| MD5 |
6b1348fe9214613f6c0ddeb89fb89669
|
|
| BLAKE2b-256 |
a1968c6e2389a2b2e9e753ba602f1f25e68880646e3fabcb029113d01c03bc2c
|