Torrent Info
Title Pluralsight.com - Python Beyond the Basics (2014 RUS ENG)
Category
Size 1.89GB

Files List
Please note that this page does not hosts or makes available any of the listed filenames. You cannot download any of those files from here.
00_01. Prerequisites.mp4 20.27MB
01_01. Packages.mp4 9.74MB
01_02. Imports from SYS.PATH.mp4 17.75MB
01_03. Implementing Packages.mp4 12.56MB
01_04. SubPackages.mp4 5.09MB
01_05. Example - A Full Program.mp4 7.09MB
01_06. Relative Imports.mp4 8.40MB
01_07. Controlling Imports with __all__.mp4 6.94MB
01_08. Namespace Packages.mp4 11.05MB
01_09. Executable Directories.mp4 11.88MB
01_10. Recommended Layout.mp4 3.91MB
01_11. Duck Tails - Modules are Singletons.mp4 6.49MB
01_12. Summary.mp4 12.39MB
02_01. Function Review.mp4 8.76MB
02_02. Callable Instances.mp4 16.30MB
02_03. Classes are Callable.mp4 7.39MB
02_04. Conditional Expressions.mp4 3.41MB
02_05. Lambdas.mp4 19.82MB
02_06. Detecting Callable Objects.mp4 3.24MB
02_07. Extended Formal Argument Syntax.mp4 24.02MB
02_08. Extended Call Syntax.mp4 7.75MB
02_09. Forwarding Arguments.mp4 2.76MB
02_10. Duck Tail - Transposing Tables.mp4 10.77MB
02_11. Summary.mp4 11.03MB
03_01. Local Functions.mp4 15.28MB
03_02. Returning Functions from Functions.mp4 2.92MB
03_03. Closures and Nested Scopes.mp4 4.96MB
03_04. Function Factories.mp4 4.53MB
03_05. The Nonlocal Keyword.mp4 21.00MB
03_06. Function Decorators.mp4 6.25MB
03_07. A First Decorator Example.mp4 9.86MB
03_08. What Can Be a Decorator.mp4 8.06MB
03_09. Instances as Decorators.mp4 8.40MB
03_10. Multiple Decorators.mp4 7.59MB
03_11. Decorating Methods.mp4 4.15MB
03_12. FUNCTOOLS.WRAPS().mp4 16.76MB
03_13. Duck Tails - Validating Arguments.mp4 11.63MB
03_14. Summary.mp4 8.36MB
04_01. Class Attributes.mp4 25.77MB
04_02. Static Methods.mp4 8.04MB
04_03. Class Methods.mp4 28.04MB
04_04. Static Methods with Inheritance.mp4 17.22MB
04_05. Class Methods with Inheritance.mp4 20.60MB
04_06. Properties.mp4 35.38MB
04_07. Properties and Inheritance.mp4 46.10MB
04_08. Duck Tail - The Template Method Pattern.mp4 17.03MB
04_09. Summary.mp4 6.66MB
05_01. Two String Representations.mp4 5.11MB
05_02. REPR().mp4 9.91MB
05_03. STR().mp4 3.65MB
05_04. When are the Representations Used.mp4 8.64MB
05_05. Interaction with FORMAT().mp4 10.52MB
05_06. Reprlib.mp4 8.15MB
05_07. ASCII(), ORD() and CHR().mp4 6.49MB
05_08. Duck Tail - Bigger Isn't Always Better.mp4 9.81MB
05_09. Summary.mp4 10.20MB
06_01. Reviewing Int and Float.mp4 23.08MB
06_02. The Decimal Module and the Decimal Type.mp4 37.01MB
06_03. Rational Numbers with the Fraction Type.mp4 11.50MB
06_04. The Complex Type and the Cmath Module.mp4 20.02MB
06_05. Built-in Numeric Functions ABS() and ROUND().mp4 10.83MB
06_06. Number Base Conversions.mp4 6.58MB
06_07. The DATETIME Module and DATE Type.mp4 19.49MB
06_08. The TIME Type.mp4 7.34MB
06_09. The DATETIME Type.mp4 13.28MB
06_10. Durations with the TIMEDELTA Type.mp4 5.21MB
06_11. Arithmetic with DATETIME.mp4 2.98MB
06_12. Time Zones.mp4 11.84MB
06_13. Duck Tail - Floating Point vs. Rational Numbers.mp4 58.24MB
06_14. Summary.mp4 14.94MB
07_01. Multi-Input Comprehensions.mp4 14.60MB
07_02. Nested Comprehensions.mp4 6.01MB
07_03. The MAP() Function.mp4 11.74MB
07_04. Multiple Input Sequences.mp4 5.49MB
07_05. MAP() versus Comprehensions.mp4 2.06MB
07_06. The FILTER() Function.mp4 6.86MB
07_07. The FUNCTOOLS.REDUCE() Function.mp4 10.41MB
07_08. Combining MAP() and REDUCE().mp4 6.49MB
07_09. The Iteration Protocols.mp4 7.94MB
07_10. Putting the Protocols Together.mp4 3.71MB
07_11. Alternative Iterable Protocol.mp4 3.58MB
07_12. Extended ITER() Format.mp4 5.75MB
07_13. Duck Tail - Iterator for Streamed Sensor Data.mp4 8.10MB
07_14. Summary.mp4 11.12MB
08_01. Inheritance Overview.mp4 13.27MB
08_02. A Realistic Example - SortedList.mp4 6.76MB
08_03. The Built-in ISINSTANCE() Function.mp4 8.89MB
08_04. The Built-in ISSUBCLASS() Function.mp4 3.46MB
08_05. Multiple Inheritance.mp4 10.42MB
08_06. Details of Multiple Inheritance.mp4 4.70MB
08_07. Method Resolution Order.mp4 14.54MB
08_08. How is Method Resolution Order Calculated.mp4 6.26MB
08_09. The Built-in SUPER() Function.mp4 7.79MB
08_10. Class-Bound Super Proxies.mp4 9.06MB
08_11. Instance-Bound Super Proxies.mp4 6.57MB
08_12. Calling SUPER() without Arguments.mp4 3.52MB
08_13. SortedIntList Explained.mp4 5.88MB
08_14. The Object Class.mp4 8.34MB
08_15. Duck Tail - Inheritance for Implementation Sharing.mp4 6.48MB
08_16. Summary.mp4 18.32MB
09_01. Collection Protocol Overview.mp4 6.26MB
09_02. Collection Construction.mp4 20.77MB
09_03. The Container Protocol.mp4 11.40MB
09_04. The Sized Protocol.mp4 13.29MB
09_05. The Iterable Protocol.mp4 14.91MB
09_06. The Sequence Protocol - Indexing.mp4 14.98MB
09_07. The Sequence Protocol - Slicing.mp4 21.30MB
09_08. Comprehensible Test Results with __repr__().mp4 9.15MB
09_09. Implementing Equality and Inequality.mp4 32.25MB
09_10. The Sequence Protocol - Reversing.mp4 9.70MB
09_11. The Sequence Protocol - index().mp4 17.30MB
09_12. The Sequence Protocol - count().mp4 5.54MB
09_13. Improving Performance from O(N) to O(log n).mp4 33.35MB
09_14. Refactoring to Avoid Don't Repeat Yourself (DRY).mp4 16.40MB
09_15. Checking Protocol Implementations.mp4 20.63MB
09_16. The Sequence Protocol - Concatenation and Repetition.mp4 41.69MB
09_17. The Set Protocol.mp4 35.95MB
09_18. Duck Tail - Making a Mutable Set.mp4 5.27MB
09_19. Summary.mp4 9.78MB
10_01. Always Specify an Exception Type.mp4 15.65MB
10_02. The Standard Exception Hierarchy.mp4 19.90MB
10_03. Exception Payloads.mp4 21.93MB
10_04. Defining New Exceptions.mp4 15.24MB
10_05. Chaining Exceptions.mp4 23.64MB
10_06. Traceback Objects.mp4 12.89MB
10_07. Assertions - Internal Invariants.mp4 14.10MB
10_08. Assertions - Class Invariants.mp4 9.05MB
10_09. Assertions - Performance.mp4 9.08MB
10_10. Duck Tail - Preconditions and Postconditions.mp4 31.03MB
10_11. Summary.mp4 7.99MB
11_01. What is a Context Manager.mp4 9.24MB
11_02. The Context Manager Protocol.mp4 6.64MB
11_03. A First Context Manager Example.mp4 10.97MB
11_04. __enter__().mp4 3.70MB
11_05. __exit__().mp4 5.84MB
11_06. __exit__() and Exception Propagation.mp4 8.24MB
11_07. The with-statement Expansion.mp4 3.07MB
11_08. CONTEXTLIB.CONTEXTMANAGER.mp4 18.15MB
11_09. Multiple Context Managers.mp4 10.33MB
11_10. Don't Pass a List.mp4 4.17MB
11_11. Duck Tail - Context Managers for Transactions.mp4 12.21MB
11_12. Summary.mp4 10.93MB
12_01. Object Types in Depth.mp4 10.90MB
12_02. Introspecting Objects.mp4 25.08MB
12_03. Introspecting Scopes.mp4 10.27MB
12_04. The Python Standard Library Inspect Module.mp4 26.61MB
12_05. Duck Tail - An Object Introspection Tool.mp4 61.51MB
12_06. Summary.mp4 7.06MB
Floating-Point Arithmetic.zip 7.24MB
Python-Beyond-Basics.zip 24.72MB
The Python Master (0.75 Complete).pdf 1.27MB
Distribution statistics by country
Total 0
IP List List of IP addresses which were distributed this torrent