https://github.com/ziaeemehr/workshop_scripting
Scientific programming toolbox with python
https://github.com/ziaeemehr/workshop_scripting
data-science python python-script python-scripting telegram-channel youtube
Last synced: 9 months ago
JSON representation
Scientific programming toolbox with python
- Host: GitHub
- URL: https://github.com/ziaeemehr/workshop_scripting
- Owner: Ziaeemehr
- Created: 2018-10-16T19:27:16.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2023-11-29T21:08:17.000Z (about 2 years ago)
- Last Synced: 2025-02-07T13:51:52.970Z (11 months ago)
- Topics: data-science, python, python-script, python-scripting, telegram-channel, youtube
- Language: Jupyter Notebook
- Homepage:
- Size: 22.6 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### This repository is created for weekly sessions of Python scripting course at IASBS, Zanjan, Iran.
- **For a quick review please check the codes/workshop directory**
I also upload some videos and tutorials in my youtube and telegram channel which the requieing files are aploded here, please visit my Telegram channel [scientific programming channel](https://t.me/s/scientific_programming), [YouTube](https://www.youtube.com/channel/UCtoQTqZF2LzaN6T-qQlorFg), or [Aparat](https://www.aparat.com/ziaeemehr).
**References :**
1. Numerical Python A Practical Techniques Approach for Industry, Robert Johansson
2. A Student's Guide to Python for Physical Modeling, Jesse M. Kinder & Philip Nelson
3. A Primer on Scientific Programming with Python-Hans Petter Langtangen 4th Ed.(2014)
4. Python Scripting for Computational Science - Hans Petter Langtangen 3rd Edition
The slides and codes are avalable from [here](http://hplgit.github.io/scipro-primer/) and [here](http://folk.uio.no/hpl/scripting/).
Also take a look at the [these Examples](http://hplgit.github.io/primer.html/doc/pub/class/._class-readable000.html#table_of_contents)
*To install the required packages*:
```sh
conda create --name myenv # making new environment
conda activate myenv # activating the environment
conda install -c conda-forge numpy scipy matplotlib
conda install -c anaconda ipython
```