{"id":23061828,"url":"https://github.com/rrwen/py-examples","last_synced_at":"2026-05-05T07:32:09.834Z","repository":{"id":91307944,"uuid":"46988578","full_name":"rrwen/py-examples","owner":"rrwen","description":"Collection of python examples in each branch","archived":false,"fork":false,"pushed_at":"2017-03-17T21:02:08.000Z","size":402,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"intro","last_synced_at":"2025-04-03T07:19:59.773Z","etag":null,"topics":["beginner","data","download","excel","guide","introduction","links","processing","python","reference","spreadsheet","url","xls"],"latest_commit_sha":null,"homepage":"","language":"Batchfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rrwen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-27T15:59:00.000Z","updated_at":"2017-08-08T18:11:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"707dd45e-4b7f-4495-846b-f2699ac464df","html_url":"https://github.com/rrwen/py-examples","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rrwen/py-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrwen%2Fpy-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrwen%2Fpy-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrwen%2Fpy-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrwen%2Fpy-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rrwen","download_url":"https://codeload.github.com/rrwen/py-examples/tar.gz/refs/heads/intro","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrwen%2Fpy-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32640533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beginner","data","download","excel","guide","introduction","links","processing","python","reference","spreadsheet","url","xls"],"created_at":"2024-12-16T03:18:36.164Z","updated_at":"2026-05-05T07:32:09.818Z","avatar_url":"https://github.com/rrwen.png","language":"Batchfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Introduction\n  \n  \nRichard Wen (rrwen.dev@gmail.com)  \n  \nA quick introduction to Python in Windows, which includes setting up Python/Wing IDE 101, and some basic examples.  \n* [Python](https://www.python.org/about/) is a general-purpose programming language that focuses on code readability and rapid development\n* [Wing IDE 101](http://wingware.com/) provides a Graphical User Interface (GUI) complete with an editor, console, and debugger to make writing Python code easier\n  \n**Requirements**  \n* [Python 2.7](https://www.python.org/downloads/)  \n* [Wing IDE](https://wingware.com/downloads/wingide-101)\n\n**Explore the examples by switching [branches](https://help.github.com/articles/viewing-branches-in-your-repository/) in this repository.**  \n  \n## 1.0 Quick Start  \n1. Download and install [Python 2.7](https://www.python.org/downloads/) and [Wing IDE](https://wingware.com/downloads/wingide-101) (see the install guide in section 2.0)  \n2. Download and unzip [this repository](https://github.com/rrwen/py-examples/archive/intro.zip)  \n3. Run cmd.bat  \n4. Execute a simple Python file via the command line: `python sample\\helloworld.py`  \n5. Try the [basic examples](https://github.com/rrwen/py-examples/tree/intro/sample) with Wing IDE 101 and refer to the [python docs](https://docs.python.org/2.7/)  \n  \n**Package Installation**  \n  \n[pip](https://pip.pypa.io/en/stable/) is Python's package management system for packages found in the [package index](https://pypi.python.org/pypi). Run pip through the command line with your path variable set correctly `set PATH=%PATH%;C:\\Python27\\;C:\\Python27\\Scripts\\`.  \n    \n* To get a list of available commands: `pip help`\n* To get a list of installed packages: `pip list`  \n* To install a package: `pip install package`  \n* To uninstall a package: `pip uninstall package`  \n* To upgrade a package: `pip install package --upgrade`  \n* To upgrade pip on windows: `python -m pip install --upgrade pip`  \n  \n## 2.0 Install Guide  \n  \n**Python 2.7**\n  \n1. Download and install [Python 2.7](https://www.python.org/downloads/) with default settings  \n2. In a command prompt, type in `set PATH=%PATH%;C:\\Python27\\;C:\\Python27\\Scripts\\`  \n3. Then, type in `python` and you should be in the Python shell  \n\u003cimg src=\"https://raw.githubusercontent.com/rrwen/py-examples/intro/img/install4.jpg\"  width=\"600;\"/\u003e  \n  \n**Wing IDE 101**  \n  \n1. Download and install [Wing IDE 101](https://wingware.com/downloads/wingide-101) with default settings\n2. Open Wing IDE 101 and go to: _Tools -\u003e Python Shell_ and check that Python runs correctly; if not proceed to steps 3 and 4  \n\u003cimg src=\"https://raw.githubusercontent.com/rrwen/py-examples/intro/img/wing2.jpg\" width=\"600;\"/\u003e  \n3.  Go to: _Edit -\u003e Configure Python..._  \n\u003cimg src=\"https://raw.githubusercontent.com/rrwen/py-examples/intro/img/checkwing1.jpg\"  width=\"400;\"/\u003e  \n4. Select custom, browse to the directory of your installed Python, and select _python.exe_  \n\u003cimg src=\"https://raw.githubusercontent.com/rrwen/py-examples/intro/img/checkwing2.jpg\" width=\"400;\"/\u003e  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrwen%2Fpy-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frrwen%2Fpy-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrwen%2Fpy-examples/lists"}