基本信息
源码名称:WPF使用IronPython库的简单Demo
源码大小:1.57M
文件格式:.zip
开发语言:C#
更新时间:2023-04-20
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 1 元 
   源码介绍

WPF使用IronPython库的简单Demo

IronPythonDemo

.
├── IronPythonDemo-master
│   ├── IronPythonDemo
│   │   ├── IronPythonDemo.csproj
│   │   ├── Program.cs
│   │   └── PythonScripts
│   │       ├── Lib
│   │       │   ├── site-packages
│   │       │   │   ├── _markerlib
│   │       │   │   │   ├── __init__.py
│   │       │   │   │   └── markers.py
│   │       │   │   ├── easy_install.py
│   │       │   │   ├── pip
│   │       │   │   │   ├── __init__.py
│   │       │   │   │   ├── __main__.py
│   │       │   │   │   ├── _vendor
│   │       │   │   │   │   ├── __init__.py
│   │       │   │   │   │   ├── _markerlib
│   │       │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   └── markers.py
│   │       │   │   │   │   ├── colorama
│   │       │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   ├── ansi.py
│   │       │   │   │   │   │   ├── ansitowin32.py
│   │       │   │   │   │   │   ├── initialise.py
│   │       │   │   │   │   │   ├── win32.py
│   │       │   │   │   │   │   └── winterm.py
│   │       │   │   │   │   ├── distlib
│   │       │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   ├── _backport
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   ├── misc.py
│   │       │   │   │   │   │   │   ├── shutil.py
│   │       │   │   │   │   │   │   ├── sysconfig.cfg
│   │       │   │   │   │   │   │   ├── sysconfig.py
│   │       │   │   │   │   │   │   └── tarfile.py
│   │       │   │   │   │   │   ├── compat.py
│   │       │   │   │   │   │   ├── database.py
│   │       │   │   │   │   │   ├── index.py
│   │       │   │   │   │   │   ├── locators.py
│   │       │   │   │   │   │   ├── manifest.py
│   │       │   │   │   │   │   ├── markers.py
│   │       │   │   │   │   │   ├── metadata.py
│   │       │   │   │   │   │   ├── resources.py
│   │       │   │   │   │   │   ├── scripts.py
│   │       │   │   │   │   │   ├── t32.exe
│   │       │   │   │   │   │   ├── t64.exe
│   │       │   │   │   │   │   ├── util.py
│   │       │   │   │   │   │   ├── version.py
│   │       │   │   │   │   │   ├── w32.exe
│   │       │   │   │   │   │   ├── w64.exe
│   │       │   │   │   │   │   └── wheel.py
│   │       │   │   │   │   ├── html5lib
│   │       │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   ├── constants.py
│   │       │   │   │   │   │   ├── filters
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   ├── _base.py
│   │       │   │   │   │   │   │   ├── alphabeticalattributes.py
│   │       │   │   │   │   │   │   ├── inject_meta_charset.py
│   │       │   │   │   │   │   │   ├── lint.py
│   │       │   │   │   │   │   │   ├── optionaltags.py
│   │       │   │   │   │   │   │   ├── sanitizer.py
│   │       │   │   │   │   │   │   └── whitespace.py
│   │       │   │   │   │   │   ├── html5parser.py
│   │       │   │   │   │   │   ├── ihatexml.py
│   │       │   │   │   │   │   ├── inputstream.py
│   │       │   │   │   │   │   ├── sanitizer.py
│   │       │   │   │   │   │   ├── serializer
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   └── htmlserializer.py
│   │       │   │   │   │   │   ├── tokenizer.py
│   │       │   │   │   │   │   ├── treebuilders
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   ├── _base.py
│   │       │   │   │   │   │   │   ├── dom.py
│   │       │   │   │   │   │   │   ├── etree.py
│   │       │   │   │   │   │   │   └── etree_lxml.py
│   │       │   │   │   │   │   ├── treewalkers
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   ├── _base.py
│   │       │   │   │   │   │   │   ├── dom.py
│   │       │   │   │   │   │   │   ├── etree.py
│   │       │   │   │   │   │   │   ├── genshistream.py
│   │       │   │   │   │   │   │   ├── lxmletree.py
│   │       │   │   │   │   │   │   └── pulldom.py
│   │       │   │   │   │   │   ├── trie
│   │       │   │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   │   ├── _base.py
│   │       │   │   │   │   │   │   ├── datrie.py
│   │       │   │   │   │   │   │   └── py.py
│   │       │   │   │   │   │   └── utils.py
│   │       │   │   │   │   ├── pkg_resources.py
│   │       │   │   │   │   ├── re-vendor.py
│   │       │   │   │   │   ├── requests
│   │       │   │   │   │   │   ├── __init__.py
│   │       │   │   │   │   │   ├── adapters.py
│   │       │   │   │   │   │   ├── api.py
│   │       │   │   │   │   │   ├── auth.py
│   │       │   │   │   │   │   ├── cacert.pem
│   │       │   │   │   │   │   ├── certs.py
│   │       │   │   │   │   │   ├── compat.py
│   │       │   │   │   │   │   ├── cookies.py
│   │       │   │   │   │   │   ├── exceptions.py
│   │       │   │   │   │   │   ├── hooks.py
│   │       │   │   │   │   │   ├── models.py
│   │       │   │   │   │   │   ├── sessions.py
│   │       │   │   │   │   │   ├── status_codes.py
│   │       │   │   │   │   │   ├── structures.py
│   │       │   │   │   │   │   └── utils.py
│   │       │   │   │   │   └── six.py
│   │       │   │   │   ├── backwardcompat
│   │       │   │   │   │   └── __init__.py
│   │       │   │   │   ├── basecommand.py
│   │       │   │   │   ├── baseparser.py
│   │       │   │   │   ├── cmdoptions.py
│   │       │   │   │   ├── commands
│   │       │   │   │   │   ├── __init__.py
│   │       │   │   │   │   ├── bundle.py
│   │       │   │   │   │   ├── completion.py
│   │       │   │   │   │   ├── freeze.py
│   │       │   │   │   │   ├── help.py
│   │       │   │   │   │   ├── install.py
│   │       │   │   │   │   ├── list.py
│   │       │   │   │   │   ├── search.py
│   │       │   │   │   │   ├── show.py
│   │       │   │   │   │   ├── uninstall.py
│   │       │   │   │   │   ├── unzip.py
│   │       │   │   │   │   ├── wheel.py
│   │       │   │   │   │   └── zip.py
│   │       │   │   │   ├── download.py
│   │       │   │   │   ├── exceptions.py
│   │       │   │   │   ├── index.py
│   │       │   │   │   ├── locations.py
│   │       │   │   │   ├── log.py
│   │       │   │   │   ├── pep425tags.py
│   │       │   │   │   ├── req.py
│   │       │   │   │   ├── runner.py
│   │       │   │   │   ├── status_codes.py
│   │       │   │   │   ├── util.py
│   │       │   │   │   ├── vcs
│   │       │   │   │   │   ├── __init__.py
│   │       │   │   │   │   ├── bazaar.py
│   │       │   │   │   │   ├── git.py
│   │       │   │   │   │   ├── mercurial.py
│   │       │   │   │   │   └── subversion.py
│   │       │   │   │   └── wheel.py
│   │       │   │   ├── pip-1.5.4.dist-info
│   │       │   │   │   ├── DESCRIPTION.rst
│   │       │   │   │   ├── METADATA
│   │       │   │   │   ├── RECORD
│   │       │   │   │   ├── WHEEL
│   │       │   │   │   ├── entry_points.txt
│   │       │   │   │   ├── pydist.json
│   │       │   │   │   └── top_level.txt
│   │       │   │   ├── pkg_resources.py
│   │       │   │   ├── requests
│   │       │   │   │   ├── __init__.py
│   │       │   │   │   ├── __version__.py
│   │       │   │   │   ├── _internal_utils.py
│   │       │   │   │   ├── adapters.py
│   │       │   │   │   ├── api.py
│   │       │   │   │   ├── auth.py
│   │       │   │   │   ├── cacert.pem
│   │       │   │   │   ├── certs.py
│   │       │   │   │   ├── compat.py
│   │       │   │   │   ├── cookies.py
│   │       │   │   │   ├── exceptions.py
│   │       │   │   │   ├── hooks.py
│   │       │   │   │   ├── models.py
│   │       │   │   │   ├── sessions.py
│   │       │   │   │   ├── status_codes.py
│   │       │   │   │   ├── structures.py
│   │       │   │   │   └── utils.py
│   │       │   │   ├── requests-2.15.1.dist-info
│   │       │   │   │   ├── DESCRIPTION.rst
│   │       │   │   │   ├── METADATA
│   │       │   │   │   ├── RECORD
│   │       │   │   │   ├── WHEEL
│   │       │   │   │   ├── metadata.json
│   │       │   │   │   └── top_level.txt
│   │       │   │   ├── setuptools
│   │       │   │   │   ├── __init__.py
│   │       │   │   │   ├── archive_util.py
│   │       │   │   │   ├── cli-32.exe
│   │       │   │   │   ├── cli-64.exe
│   │       │   │   │   ├── cli-arm-32.exe
│   │       │   │   │   ├── cli.exe
│   │       │   │   │   ├── command
│   │       │   │   │   │   ├── __init__.py
│   │       │   │   │   │   ├── alias.py
│   │       │   │   │   │   ├── bdist_egg.py
│   │       │   │   │   │   ├── bdist_rpm.py
│   │       │   │   │   │   ├── bdist_wininst.py
│   │       │   │   │   │   ├── build_ext.py
│   │       │   │   │   │   ├── build_py.py
│   │       │   │   │   │   ├── develop.py
│   │       │   │   │   │   ├── easy_install.py
│   │       │   │   │   │   ├── egg_info.py
│   │       │   │   │   │   ├── install.py
│   │       │   │   │   │   ├── install_egg_info.py
│   │       │   │   │   │   ├── install_lib.py
│   │       │   │   │   │   ├── install_scripts.py
│   │       │   │   │   │   ├── launcher manifest.xml
│   │       │   │   │   │   ├── register.py
│   │       │   │   │   │   ├── rotate.py
│   │       │   │   │   │   ├── saveopts.py
│   │       │   │   │   │   ├── sdist.py
│   │       │   │   │   │   ├── setopt.py
│   │       │   │   │   │   ├── test.py
│   │       │   │   │   │   └── upload_docs.py
│   │       │   │   │   ├── compat.py
│   │       │   │   │   ├── depends.py
│   │       │   │   │   ├── dist.py
│   │       │   │   │   ├── extension.py
│   │       │   │   │   ├── gui-32.exe
│   │       │   │   │   ├── gui-64.exe
│   │       │   │   │   ├── gui-arm-32.exe
│   │       │   │   │   ├── gui.exe
│   │       │   │   │   ├── lib2to3_ex.py
│   │       │   │   │   ├── package_index.py
│   │       │   │   │   ├── py26compat.py
│   │       │   │   │   ├── py27compat.py
│   │       │   │   │   ├── py31compat.py
│   │       │   │   │   ├── sandbox.py
│   │       │   │   │   ├── script template (dev).py
│   │       │   │   │   ├── script template.py
│   │       │   │   │   ├── site-patch.py
│   │       │   │   │   ├── ssl_support.py
│   │       │   │   │   ├── svn_utils.py
│   │       │   │   │   ├── tests
│   │       │   │   │   │   ├── __init__.py
│   │       │   │   │   │   ├── doctest.py
│   │       │   │   │   │   ├── environment.py
│   │       │   │   │   │   ├── py26compat.py
│   │       │   │   │   │   ├── script-with-bom.py
│   │       │   │   │   │   ├── server.py
│   │       │   │   │   │   ├── test_bdist_egg.py
│   │       │   │   │   │   ├── test_build_ext.py
│   │       │   │   │   │   ├── test_develop.py
│   │       │   │   │   │   ├── test_dist_info.py
│   │       │   │   │   │   ├── test_easy_install.py
│   │       │   │   │   │   ├── test_egg_info.py
│   │       │   │   │   │   ├── test_markerlib.py
│   │       │   │   │   │   ├── test_packageindex.py
│   │       │   │   │   │   ├── test_resources.py
│   │       │   │   │   │   ├── test_sandbox.py
│   │       │   │   │   │   ├── test_sdist.py
│   │       │   │   │   │   ├── test_svn.py
│   │       │   │   │   │   ├── test_test.py
│   │       │   │   │   │   └── test_upload_docs.py
│   │       │   │   │   └── version.py
│   │       │   │   └── setuptools-2.1.dist-info
│   │       │   │       ├── DESCRIPTION.rst
│   │       │   │       ├── METADATA
│   │       │   │       ├── RECORD
│   │       │   │       ├── WHEEL
│   │       │   │       ├── dependency_links.txt
│   │       │   │       ├── entry_points.txt
│   │       │   │       ├── entry_points.txt.orig
│   │       │   │       ├── pydist.json
│   │       │   │       ├── requires.txt.orig
│   │       │   │       ├── top_level.txt
│   │       │   │       └── zip-safe
│   │       │   └── tcl8.6
│   │       │       └── init.tcl
│   │       └── main.py
│   └── IronPythonDemo.sln
└── 好例子网_IronPythonDemo.zip

30 directories, 238 files