Skip to content

Commit 83e2349

Browse files
committed
added demo modules
Signed-off-by: ABHIJIT SINHA <[email protected]>
1 parent b4372b8 commit 83e2349

File tree

25 files changed

+252
-242
lines changed

25 files changed

+252
-242
lines changed

STUDY.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
### Basic Python
2+
3+
- book: Python Basics by Dan
4+
- book: Real Python
5+
- https://realpython.com/courses/realpython-course-bundle/
6+
- https://www.youtube.com/playlist?list=PL7yh-TELLS1GNyuvPsFEqb7JVMEUTtuau
7+
- https://www.youtube.com/playlist?list=PL7yh-TELLS1FuqLSjl5bgiQIEH25VEmIc
8+
- https://www.youtube.com/watch?v=eykoKxsYtow&list=PLeo1K3hjS3uv5U-Lmlnucd7gqF-3ehIh0
9+
10+
### Advanced Python
11+
12+
- book: Buffet of Python by Dan
13+
- https://realpython.com/courses/python-tricks-digital-toolkit/
14+
- book: Cpython internals
15+
- Python the next level by Aaron material + video -> safari => `Subscription based`
16+
- pdf material: Beyond the basics by Aaron
17+
- book: Powerfull python by Aaron
18+
- video: https://www.pluralsight.com/courses/python-beyond-basics
19+
- video: https://www.pluralsight.com/courses/advanced-python
20+
- https://powerfulpython.com/store/
21+
- Powerfull python academy (full package)
22+
- book: Effective Python
23+
- book: Fluent Python second edition -> O'Reilly => `Subscription based`
24+
25+
### Python Ongoing Learning
26+
27+
- https://realpython.com/ => `Subscription based`
28+
- https://realpython.com/courses/
29+
- https://www.learnbyexample.org/python-for-loop/
30+
31+
### Python Design Patterns
32+
33+
- https://www.youtube.com/watch?v=o1FZ_Bd4DSM
34+
- http://34.212.143.74/s201911/pycon2019/docs/design_patterns.html
35+
- https://www.pluralsight.com/courses/python-design-patterns#
36+
- https://www.linkedin.com/learning/python-design-patterns
37+
- https://www.udemy.com/course/design-patterns-in-python/learn/lecture/25231938?start=15#overview
38+
- https://www.udemy.com/course/design-patterns-python/learn/lecture/13362966?start=15#overview
39+
- Design Patterns in Python book by Sean Bradley
40+
41+
### Data Structure & Algorithms
42+
43+
- Book: Grokking Algorithms by Aditya Y Bhargava
44+
- Book: Python Data Structures and Algorithms by Benjamin Baka (Author)
45+
- Book: Data Structures and Algorithms Using Python by Rance D
46+
- Book: Classic computer science problems in Python by David Kopec
47+
- Book by Brad Miller: http://interactivepython.org/runestone/static/pythonds/index.html
48+
- http://nptel.ac.in/courses/106106145/
49+
50+
### Python Security & Cryptography
51+
52+
- book: practical python security by dennis
53+
- book: violent python
54+
- udemy: downloaded -> python for offensive security
55+
- book: grayhat python
56+
- book: blackhat python
57+
- book: python penetration testing essentials by mohit
58+
- book: practical cryptography in python
File renamed without changes.
File renamed without changes.

core_concepts/demo_modules/stack/demo_stack.py renamed to core_concepts/data_structures/demo_stack.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# !/usr/bin/env python3
22

33
# author: greyshell
4-
# description: stack using list
54

65

76
def main():
File renamed without changes.

0 commit comments

Comments
 (0)