python path.join_Python path.join方法代码示例

本文整理汇总了Python中os.path.join方法的典型用法代码示例。如果您正苦于以下问题:Python path.join方法的具体用法?Python path.join怎么用?Python path.join使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在模块os.path的用法示例。

在下文中一共展示了path.join方法的30个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: isUpdatesAvailable

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def isUpdatesAvailable(cls, path):

if sys.version_info < (3, 0):

return False

# pylint: disable=broad-except

if not os.path.isfile(os.path.join(path, "files.xml")):

return True

try:

available = dict()

for it in ET.parse(os.path.join(path, "files.xml")).iter():

if it.tag == "File":

available[it.text] = datetime.datetime.strptime(it.attrib["Modified"], "%d-%m-%Y")

path = NamedTemporaryFile()

path.close()

urllib.request.urlretrieve("https://www.gurux.fi/obis/files.xml", path.name)

for it in ET.parse(path.name).iter():

if it.tag == "File":

tmp = datetime.datetime.strptime(it.attrib["Modified"], "%d-%m-%Y")

if not it.text in available or available[it.text] != tmp:

return True

except Exception as e:

print(e)

return True

return False

开发者ID:Gurux,项目名称:Gurux.DLMS.Python,代码行数:26,

示例2: updateManufactureSettings

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def updateManufactureSettings(cls, directory):

#

# Update manufacturer settings from the Gurux www server.

#

# directory: Target directory.

#

if sys.version_info >= (3, 0):

return

if not os.path.isdir(directory):

os.mkdir(directory)

if not os.path.isdir(directory):

return

path = os.path.join(directory, "files.xml")

urllib.request.urlretrieve("https://www.gurux.fi/obis/files.xml", path)

for it in ET.parse(path).iter():

if it.tag == "File":

path = os.path.join(directory, it.text)

urllib.request.urlretrieve("https://www.gurux.fi/obis/" + it.text, path)

开发者ID:Gurux,项目名称:Gurux.DLMS.Python,代码行数:20,

示例3: readManufacturerSettings

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def readManufacturerSettings(cls, manufacturers, path):

# pylint: disable=broad-except

manufacturers = []

files = [f for f in listdir(path) if isfile(join(path, f))]

if files:

for it in files:

if it.endswith(".obx"):

try:

manufacturers.append(cls.__parse(os.path.join(path, it)))

except Exception as e:

print(e)

continue

#

# Serialize manufacturer from the xml.

#

# @param in

# Input stream.

# Serialized manufacturer.

#

开发者ID:Gurux,项目名称:Gurux.DLMS.Python,代码行数:22,

示例4: add_base_arguments

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def add_base_arguments(parser, default_help):

import os

from os.path import join as path_join

home = os.environ.get('HOME')

mono_sources_default = os.environ.get('MONO_SOURCE_ROOT', '')

parser.add_argument('--verbose-make', action='store_true', default=False, help=default_help)

# --jobs supports not passing an argument, in which case the 'const' is used,

# which is the number of CPU cores on the host system.

parser.add_argument('--jobs', '-j', nargs='?', const=str(os.cpu_count()), default='1', help=default_help)

parser.add_argument('--configure-dir', default=path_join(home, 'mono-configs'), help=default_help)

parser.add_argument('--install-dir', default=path_join(home, 'mono-installs'), help=default_help)

if mono_sources_default:

parser.add_argument('--mono-sources', default=mono_sources_default, help=default_help)

else:

parser.add_argument('--mono-sources', required=True)

parser.add_argument('--mxe-prefix', default='/usr', help=default_help)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:22,

示例5: clean

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def clean(opts: BaseOpts, target: str):

build_dir = path_join(opts.configure_dir, 'llvm-%s' % target)

install_dir = path_join(opts.install_dir, 'llvm-%s' % target)

stamp_file = path_join(opts.configure_dir, '.stamp-%s-make' % target)

rm_rf(stamp_file)

make_args = make_default_args(opts)

make_args += [

'-C', '%s/llvm' % opts.mono_source_root,

'-f', 'build.mk', 'clean-llvm',

'LLVM_BUILD=%s' % build_dir,

'LLVM_PREFIX=%s' % install_dir

]

run_command('make', args=make_args, name='make clean')

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:18,

示例6: strip_libs

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def strip_libs(opts: DesktopOpts, product: str, target_platform: str, target: str):

if target_platform == 'osx':

# 'strip' doesn't support '--strip-unneeded' on macOS

return

if is_cross_compiling(target_platform) and target_platform == 'windows':

mxe_bin = path_join(opts.mxe_prefix, 'bin')

name_fmt = path_join(mxe_bin, target_arch[target_platform][target] + '-w64-mingw32-%s')

strip = name_fmt % 'strip'

else:

strip = 'strip'

install_dir = path_join(opts.install_dir, '%s-%s-%s' % (product, target, opts.configuration))

out_libs_dir = path_join(install_dir, 'lib')

lib_files = globs(('*.a', '*.so'), dirpath=out_libs_dir)

if len(lib_files):

run_command(strip, args=['--strip-unneeded'] + lib_files, name='strip')

if target_platform == 'windows':

out_bin_dir = path_join(install_dir, 'bin')

dll_files = globs(('*.dll',), dirpath=out_bin_dir)

if len(dll_files):

run_command(strip, args=['--strip-unneeded'] + dll_files, name='strip')

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:27,

示例7: configure

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def configure(opts: AndroidOpts, product: str, target: str):

env = { 'ANDROID_API_VERSION': get_api_version_or_min(opts, target) }

if is_cross(target):

import llvm

if is_cross_mxe(target):

llvm.make(opts, 'llvmwin64')

setup_android_cross_mxe_template(env, opts, target, host_arch='x86_64')

else:

llvm.make(opts, 'llvm64')

setup_android_cross_template(env, opts, target, host_arch='x86_64')

else:

make_standalone_toolchain(opts, target, env['ANDROID_API_VERSION'])

setup_android_target_template(env, opts, target)

if not os.path.isfile(path_join(opts.mono_source_root, 'configure')):

runtime.run_autogen(opts)

runtime.run_configure(env, opts, product, target)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:22,

示例8: wasm_run_configure

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def wasm_run_configure(env: dict, opts: RuntimeOpts, product: str, target: str, emsdk_root: str):

build_dir = path_join(opts.configure_dir, '%s-%s-%s' % (product, target, opts.configuration))

mkdir_p(build_dir)

def str_dict_val(val):

if isinstance(val, list):

return ' '.join(val) # Don't need to surround with quotes

return val

ac_vars = env['_%s_%s_AC_VARS' % (product, target)]

configure_flags = env['_%s_%s_CONFIGURE_FLAGS' % (product, target)]

configure = path_join(opts.mono_source_root, 'configure')

configure_args = ac_vars + configure_flags

configure_env = os.environ.copy()

target_extra_path = env.get('_%s-%s_PATH' % (product, target), '')

if target_extra_path:

configure_env['PATH'] += ':' + target_extra_path

configure_env['PATH'] = emsdk_root + ':' + configure_env['PATH']

run_command('emconfigure', args=[configure] + configure_args, cwd=build_dir, env=configure_env, name='configure')

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:26,

示例9: run_configure

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def run_configure(env: dict, opts: RuntimeOpts, product: str, target: str):

build_dir = path_join(opts.configure_dir, '%s-%s-%s' % (product, target, opts.configuration))

mkdir_p(build_dir)

def str_dict_val(val):

if isinstance(val, list):

return ' '.join(val) # Don't need to surround with quotes

return val

ac_vars = env['_runtime_%s-%s_AC_VARS' % (product, target)]

configure_env_args = env['_runtime_%s-%s_CONFIGURE_ENVIRONMENT' % (product, target)]

configure_env_args = [('%s=%s' % (key, str_dict_val(value))) for (key, value) in configure_env_args.items()]

configure_flags = env['_runtime_%s-%s_CONFIGURE_FLAGS' % (product, target)]

configure = path_join(opts.mono_source_root, 'configure')

configure_args = ac_vars + configure_env_args + configure_flags

configure_env = os.environ.copy()

target_extra_path = env.get('_%s-%s_PATH' % (product, target), '')

if target_extra_path:

configure_env['PATH'] += ':' + target_extra_path

run_command(configure, args=configure_args, cwd=build_dir, env=configure_env, name='configure')

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:25,

示例10: get_subset_by_classes

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def get_subset_by_classes(self):

"""Filter imgs by user-defined categories."""

subset_data_infos = []

for data_info in self.data_infos:

img_id = data_info['id']

xml_path = osp.join(self.img_prefix, 'Annotations',

f'{img_id}.xml')

tree = ET.parse(xml_path)

root = tree.getroot()

for obj in root.findall('object'):

name = obj.find('name').text

if name in self.CLASSES:

subset_data_infos.append(data_info)

break

return subset_data_infos

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:18,

示例11: get_cat_ids

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def get_cat_ids(self, idx):

"""Get category ids in XML file by index.

Args:

idx (int): Index of data.

Returns:

list[int]: All categories in the image of specified index.

"""

cat_ids = []

img_id = self.data_infos[idx]['id']

xml_path = osp.join(self.img_prefix, 'Annotations', f'{img_id}.xml')

tree = ET.parse(xml_path)

root = tree.getroot()

for obj in root.findall('object'):

name = obj.find('name').text

if name not in self.CLASSES:

continue

label = self.cat2label[name]

cat_ids.append(label)

return cat_ids

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:25,

示例12: test_load_multi_channel_img

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def test_load_multi_channel_img(self):

results = dict(

img_prefix=self.data_prefix,

img_info=dict(filename=['color.jpg', 'color.jpg']))

transform = LoadMultiChannelImageFromFiles()

results = transform(copy.deepcopy(results))

assert results['filename'] == [

osp.join(self.data_prefix, 'color.jpg'),

osp.join(self.data_prefix, 'color.jpg')

]

assert results['ori_filename'] == ['color.jpg', 'color.jpg']

assert results['img'].shape == (288, 512, 3, 2)

assert results['img'].dtype == np.uint8

assert results['img_shape'] == (288, 512, 3, 2)

assert results['ori_shape'] == (288, 512, 3, 2)

assert results['pad_shape'] == (288, 512, 3, 2)

assert results['scale_factor'] == 1.0

assert repr(transform) == transform.__class__.__name__ + \

"(to_float32=False, color_type='unchanged', " + \

"file_client_args={'backend': 'disk'})"

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:22,

示例13: test_albu_transform

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def test_albu_transform():

results = dict(

img_prefix=osp.join(osp.dirname(__file__), '../data'),

img_info=dict(filename='color.jpg'))

# Define simple pipeline

load = dict(type='LoadImageFromFile')

load = build_from_cfg(load, PIPELINES)

albu_transform = dict(

type='Albu', transforms=[dict(type='ChannelShuffle', p=1)])

albu_transform = build_from_cfg(albu_transform, PIPELINES)

normalize = dict(type='Normalize', mean=[0] * 3, std=[0] * 3, to_rgb=True)

normalize = build_from_cfg(normalize, PIPELINES)

# Execute transforms

results = load(results)

results = albu_transform(results)

results = normalize(results)

assert results['img'].dtype == np.float32

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:24,

示例14: test_default_format_bundle

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def test_default_format_bundle():

results = dict(

img_prefix=osp.join(osp.dirname(__file__), '../data'),

img_info=dict(filename='color.jpg'))

load = dict(type='LoadImageFromFile')

load = build_from_cfg(load, PIPELINES)

bundle = dict(type='DefaultFormatBundle')

bundle = build_from_cfg(bundle, PIPELINES)

results = load(results)

assert 'pad_shape' not in results

assert 'scale_factor' not in results

assert 'img_norm_cfg' not in results

results = bundle(results)

assert 'pad_shape' in results

assert 'scale_factor' in results

assert 'img_norm_cfg' in results

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:18,

示例15: main

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def main():

args = parse_args()

cityscapes_path = args.cityscapes_path

out_dir = args.out_dir if args.out_dir else cityscapes_path

mmcv.mkdir_or_exist(out_dir)

img_dir = osp.join(cityscapes_path, args.img_dir)

gt_dir = osp.join(cityscapes_path, args.gt_dir)

set_name = dict(

train='instancesonly_filtered_gtFine_train.json',

val='instancesonly_filtered_gtFine_val.json',

test='instancesonly_filtered_gtFine_test.json')

for split, json_name in set_name.items():

print(f'Converting {split} into {json_name}')

with mmcv.Timer(

print_tmpl='It tooks {}s to convert Cityscapes annotation'):

files = collect_files(

osp.join(img_dir, split), osp.join(gt_dir, split))

image_infos = collect_annotations(files, nproc=args.nproc)

cvt_annotations(image_infos, osp.join(out_dir, json_name))

开发者ID:open-mmlab,项目名称:mmdetection,代码行数:24,

示例16: mock_requestsGithub

​点赞 6

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def mock_requestsGithub(uri, headers={}, params={}):

if uri.endswith('contents'):

return_value = Mock(ok=True)

return_value.json.return_value = mock_files

return return_value

else:

targetFile = uri.replace('https://raw.githubusercontent.com/fakeuser/fakerepo/master/', path.join(base_url, ''))

if path.exists(targetFile):

f = open(targetFile, 'r')

lines = f.readlines()

text = ''.join(lines)

return_value = Mock(status_code=200)

return_value.text = text

return return_value

else:

return_value = Mock(status_code=404)

return return_value

开发者ID:CLARIAH,项目名称:grlc,代码行数:19,

示例17: isFirstRun

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def isFirstRun(cls, path):

if not os.path.isdir(path):

os.mkdir(path)

return True

if not os.path.isfile(os.path.join(path, "files.xml")):

return True

return False

#

# Check if there are any updates available in Gurux www server.

#

# @param path

# Settings directory.

# Returns true if there are any updates available.

#

开发者ID:Gurux,项目名称:Gurux.DLMS.Python,代码行数:17,

示例18: read

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def read(fname):

"""Read filename"""

return open(os.path.join(os.path.dirname(__file__), fname)).read()

开发者ID:wmkouw,项目名称:libTLDA,代码行数:5,

示例19: configure_bcl

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def configure_bcl(opts: BclOpts):

stamp_file = path_join(opts.configure_dir, '.stamp-bcl-configure')

if os.path.isfile(stamp_file):

return

if not os.path.isfile(path_join(opts.mono_source_root, 'configure')):

runtime.run_autogen(opts)

build_dir = path_join(opts.configure_dir, 'bcl')

mkdir_p(build_dir)

CONFIGURE_FLAGS = [

'--disable-boehm',

'--disable-btls-lib',

'--disable-nls',

'--disable-support-build',

'--with-mcs-docs=no'

]

configure = path_join(opts.mono_source_root, 'configure')

configure_args = CONFIGURE_FLAGS

run_command(configure, args=configure_args, cwd=build_dir, name='configure bcl')

touch(stamp_file)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:28,

示例20: make_bcl

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def make_bcl(opts: BclOpts):

stamp_file = path_join(opts.configure_dir, '.stamp-bcl-make')

if os.path.isfile(stamp_file):

return

build_dir = path_join(opts.configure_dir, 'bcl')

make_args = make_default_args(opts)

make_args += ['-C', build_dir, '-C', 'mono']

run_command('make', args=make_args, name='make bcl')

touch(stamp_file)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:16,

示例21: clean_bcl

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def clean_bcl(opts: BclOpts):

configure_stamp_file = path_join(opts.configure_dir, '.stamp-bcl-configure')

make_stamp_file = path_join(opts.configure_dir, '.stamp-bcl-make')

build_dir = path_join(opts.configure_dir, 'bcl')

rm_rf(configure_stamp_file, make_stamp_file, build_dir)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:7,

示例22: clean_product

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def clean_product(opts: BclOpts, product: str):

clean_bcl(opts)

install_dir = path_join(opts.install_dir, '%s-bcl' % product)

rm_rf(install_dir)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:7,

示例23: install

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def install(opts: BaseOpts):

build_dir = '%s/mcs/class/reference-assemblies' % opts.mono_source_root

install_dir = path_join(opts.install_dir, 'reference-assemblies')

mkdir_p(install_dir)

make_args = make_default_args(opts)

make_args += ['-C', build_dir, 'install-local', 'DESTDIR=%s' % install_dir, 'prefix=/']

run_command('make', args=make_args, name='make install-local')

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:12,

示例24: clean

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def clean(opts: BaseOpts):

install_dir = path_join(opts.install_dir, 'reference-assemblies')

rm_rf(install_dir)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:5,

示例25: configure

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def configure(opts: iOSOpts, product: str, target: str):

env = {}

is_sim = target in sim_targets

if is_cross(target):

import llvm

llvm.make(opts, 'llvm64')

setup_ios_cross_template(env, opts, target, host_arch='x86_64')

else:

if is_sim:

setup_ios_simulator_template(env, opts, target)

else:

setup_ios_device_template(env, opts, target)

if not os.path.isfile(path_join(opts.mono_source_root, 'configure')):

runtime.run_autogen(opts)

runtime.run_configure(env, opts, product, target)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:22,

示例26: make

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def make(opts: iOSOpts, product: str, target: str):

env = {}

build_dir = path_join(opts.configure_dir, '%s-%s-%s' % (product, target, opts.configuration))

make_args = make_default_args(opts)

make_args += ['-C', build_dir]

run_command('make', args=make_args, name='make')

run_command('make', args=['-C', '%s/mono' % build_dir, 'install'], name='make install mono')

run_command('make', args=['-C', '%s/support' % build_dir, 'install'], name='make install support')

run_command('make', args=['-C', '%s/data' % build_dir, 'install'], name='make install data')

if opts.strip_libs and not is_cross(target):

strip_libs(opts, product, target)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:17,

示例27: get_osxcross_sdk

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def get_osxcross_sdk(osxcross_bin, arch):

osxcross_sdk = os.environ.get('OSXCROSS_SDK', 18)

name_fmt = path_join(osxcross_bin, arch + '-apple-darwin%s-%s')

if not os.path.isfile(name_fmt % (osxcross_sdk, 'ar')):

raise BuildError('Specify a valid osxcross SDK with the environment variable \'OSXCROSS_SDK\'')

return osxcross_sdk

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:11,

示例28: configure

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def configure(opts: DesktopOpts, product: str, target_platform: str, target: str):

env = {}

setup_desktop_template(env, opts, product, target_platform, target)

if not os.path.isfile(path_join(opts.mono_source_root, 'configure')):

runtime.run_autogen(opts)

runtime.run_configure(env, opts, product, target)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:11,

示例29: make

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def make(opts: DesktopOpts, product: str, target_platform: str, target: str):

build_dir = path_join(opts.configure_dir, '%s-%s-%s' % (product, target, opts.configuration))

make_args = make_default_args(opts)

make_args += ['-C', build_dir]

run_command('make', args=make_args, name='make')

run_command('make', args=['-C', '%s/mono' % build_dir, 'install'], name='make install mono')

run_command('make', args=['-C', '%s/support' % build_dir, 'install'], name='make install support')

run_command('make', args=['-C', '%s/data' % build_dir, 'install'], name='make install data')

if opts.strip_libs:

strip_libs(opts, product, target_platform, target)

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:15,

示例30: android_autodetect_cmake

​点赞 5

# 需要导入模块: from os import path [as 别名]

# 或者: from os.path import join [as 别名]

def android_autodetect_cmake(opts: AndroidOpts) -> str:

from distutils.version import LooseVersion

from os import listdir

sdk_cmake_basedir = path_join(opts.android_sdk_root, 'cmake')

versions = []

for entry in listdir(sdk_cmake_basedir):

if os.path.isdir(path_join(sdk_cmake_basedir, entry)):

try:

version = LooseVersion(entry)

versions += [version]

except ValueError:

continue # Not a version folder

if len(versions) == 0:

raise BuildError('Cannot auto-detect Android CMake version')

lattest_version = str(sorted(versions)[-1])

print('Auto-detected Android CMake version: ' + lattest_version)

return lattest_version

开发者ID:godotengine,项目名称:godot-mono-builds,代码行数:24,

注:本文中的os.path.join方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值