https://github.com/iandarwin/pysrc
Collected Python code samples from using and teaching the language. Scroll down to see the README!
https://github.com/iandarwin/pysrc
python python-3
Last synced: 7 months ago
JSON representation
Collected Python code samples from using and teaching the language. Scroll down to see the README!
- Host: GitHub
- URL: https://github.com/iandarwin/pysrc
- Owner: IanDarwin
- License: other
- Created: 2019-08-14T18:52:55.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-01-08T21:34:11.000Z (over 1 year ago)
- Last Synced: 2025-02-01T19:02:12.701Z (over 1 year ago)
- Topics: python, python-3
- Language: Python
- Homepage: https://darwinsys.com/python
- Size: 184 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Ian's PySrc
This is a set of Python source code examples that I have worked on over the years.
Updated infrequently, and quite at random! Do a `git pull` every few months to keep up.
**N.B. Some examples are known to fail**, either because Python moved on and I didn't, or,
because you need to `pip install` some module that isn't installed on your system.
Contents are reasonably well predicted by the directory name:
* database
* datasci - Data Science, ML, etc.
* datetime
* graphics
* gui - graphical user interfaces
* i18n - internationalization
* io - input and output
* io_pathlib - better IO
* iteration - the iterator protocol & friends
* lang - basic language stuff
* numbers - numerics
* oo - Object Orientation
* otherlang - Dealing with other languages
* packaging - Should be called `modules` probably
* regex - you need this.
* sidebyside - comparison with some other programming languages
* starting - getting started
* strings
* structure - collections / data structuring
* testing
* textproc
* www
* xml
There is also a `runall` script which tries to do what it says on the tin,
but may well need editing for your environment.