CG Persia

  • Blog
  • Forum
    • Latest Threads
  • Torrents
    • Latest Uploads
  • Applications
    • Autodesk
      • 3dsMax
      • Maya
      • Softimage
      • Autocad
      • Mudbox
      • Sketchbook
      • Motionbuilder
      • Solidworks
      • Revit
    • Adobe
      • Photoshop
      • After-Effects
      • Premiere
      • illustrator
    • The Foundry
      • Modo
      • Mari
      • Nuke
      • Colorway
    • Eyeon
      • VUE
      • Fusion
      • LumenRT
    • Nextlimit
      • Maxwell Render
      • Realflow
    • Plugins
      • V-Ray
      • Arnold
      • Mental-ray
      • Allegorithmic
      • Cebas
    • Cinema 4d
    • Blender
    • Houdini
    • Lightwave
    • Sketchup
    • Keyshot
    • Lumion
    • Unity3D
    • Unreal Engine
    • XSI
    • Rhino
    • Zbrush
  • Tutorials
    • Pluralsight
      • Digital-Tutors
    • Lynda
    • Linkedin
    • cmiVFX
    • FXPHD
    • Gnomon
    • Gumroad
    • Udemy
    • CGSociety
    • 3DMotive
    • CreativeLive
    • CGCookie
    • 3DBuzz
    • InfiniteSkills
    • Skillfeed
    • Skillshare
    • Tutsplus
    • VTC
  • Textures
  • 3D Models
  • Archives
  • DMCA
  • About
    • Privacy Policy
    • IRC

FXPHD – PYT201 Python Fundamentals for the Pipeline

Posted by Diptra on 2017/07/13
Posted in: 2D, CG Releases, Downloads, Learning, Tutorials, Videos. Tagged: fxphd, Pipeline, Python.

Post Cover

10 Classes Project Files Included MP4


Info

Title: FXPHD – PYT201 Python Fundamentals for the Pipeline

Info:
Taught by returning prof Michael Morehouse, PYT201 will explore the use (and, only occasionally, abuse) of Python in solving the fundamental problems of a VFX pipeline. Rather than focus on the various APIs of the dozens of proprietary and commercial packages you might encounter in your career moving from facility to facility, this course will emphasize the core fundamentals of building robust, efficient, well-documented and easily maintained modules and command-line tools that do the job well and do it often, and yet remain customizable enough to be empower future development as you build a library of useful tools. We will focus on keeping your code and skills as portable as possible, leveraging on the versatility of the core Python package and a few basic open source packages such as PyYAML. You will learn to document code using the Sphinx document generation system and ReStructured Text, and you will learn to check your good coding habits using Pylint.

Throughout the course the emphasis will remain on thinking through a problem and attacking it with a library or command line tool, then testing and optimizing your code, while documenting it all the way through. While some of the more glamorous and exotic solutions will have to wait for later courses, this course will give you the fundamental skills that will help get you and keep you employed in the pipeline.

For this course you should come prepared with a reasonable familiarity with the basic Python language. Be comfortable with the idea of creating several modules which import from each other. Be familiar with how to define functions and classes, and have at least a passing understanding of object-oriented inheritance. Be prepared to work along in the command line and be reasonably familiar with terminals and their operation. Some basic shell scripting and administrator knowledge is desirable, and ideally you are comfortable enough to download and compile some simple code from source. The lessons assume you are either working in a Unix-style environment, or have your Windows configured sufficiently to engage in Unix-like command line operations. Additionally it is presumed that you have a working copy of Python 2.X installed, preferably at least Python 2.6, as well as the text editor of your choice that supports Python syntax highlighting.

Having come from a life where he rose through the ranks and changed careers more often that some people changed their pants, it’s pretty surprising to realize that Morehouse has been a 2D TD at Digital Domain for almost three years now. At Digital Domain he has been responsible for large projects involving cross-facility asset and software syncing, outsource data ingestion, and the overall Nuke pipeline while also supporting films such as Tron: Legacy and Thor. Prior to that he worked in motion tracking while teaching himself Python, and before that he did everything from build and prep cameras to inventory management, tax accounting, and Sarbanes-Oxley compliance in the production rentals end of the industry. In short Michael is far more flexible than a rubber sheet and equally as hard to pin down.
course syllabus

CLASS 1
Setting the Stage, Defining the Problem. A quick introduction to virtualenv and package management using PIL: we’ll set up a clean Python environment to work in and install some of the base packages we will be using throughout the course, including PyYAML (and optional C extensions), Sphinx, pylint and others. Next we’ll take a high level look at some basics of the fundamental problem we’ll be attacking throughout the semester: exactly how do you find image sequences on disk and move, rename, and renumber them while maintaining some fundamental knowledge about these files?
CLASS 2
This Problem isn’t so Simple: Thinking in Building Blocks. Defining a pure Python class for thinking about Frame Ranges: a Sequence is a set of files with this one property in common, they all belong to some range with a first frame and a last frame? but what if the entire range isn’t here yet? Tricking out a Class for handling this information.
CLASS 3
Command Line 1: Listing a Sequence. Our first command line tool will simply list the Sequential files of any given directory path(s) we give it. We’ll explore the basics of option parsing young the optparse module. We’ll add some (very basic) logging and also look at the creation of a configuration file using Yaml.
CLASS 4
Command line 2: Making it Sing. Make our Sequence lister walk directory trees, and dramatically expand it’s option parsing to allow filtering based on extension, regular expressions, glob-style unix syntax, and other means. Display options together in functionally related groups, and generally trick out a command line tool interface.
CLASS 5
Command line 3: Wrapping up sequence listing. Explain and expand on how itertools, ifilter, fnmatch, and regular expressions are used to progressively filter our discovered sequences, and show how all the new command line options do their thing. We also dive into using nose and the nostools command to discover and run automatable unit testing on our package to ensure that changes in our code don’t lead to regressions or bugs in its behavior.
CLASS 6
Renaming and Renumbering Should be Easy. Expand our toolset to allow powerful renaming using Regular Expressions, and renumbering using our earlier FrameRange class and our newfound skills.
CLASS 7
Threads, Queues, and Hashing. Explore simple parallelization using python’s threading. Thread class to spawn a pool of workers to perform parallel tasks. Discover a simple pattern for using the Queue. Queue class to synchronize and control Thread behavior. Modify the rnames tool from last lesson to allow Threading, and add a new cksums tool to generate md5 checksums of a sequence.
CLASS 8
Wrapping up the command line: more hashing, and threads. Enhance the cksums tool from last lesson with all of the standard checksum/hash algorithms from zlib and hashlib. Create smvs, a tool for securely moving sequences using a chained Queue structure to manage threads. Ensure that the new copy of the file exactly matches the old using checksums.
CLASS 9
Automated testing expanded; using pylint to verify coding standards. We dramatically extend our automated unit tests into class-based tests with setup and takedown of fixtures. Created test suites for all of our Model and Controller modules. We then use pylint to verify that all of the code in Pysequences is up to our facility coding standards. Good habits in testing and coding in a working world.
CLASS 10
Wrapping up; documentation and distribution. We use Sphinx with Autodoc to slurp up all of those well crafted and verbose help strings we have been judiciously and religiously adding to our code in the hope that those who follow us will not have to deal with what we had to deal with. We wrap up PYT201 with a brief discussion of distribution systems and an overview of how the skills and ideas presented will help you in your quest to master the pipeline before it masters you.
Download

Rapidgator

http://rg.to/file/c3b1aaf8af14200a3bfee459a976ba8d/FXPHDPYT201PythonFundamentalsforthePipeline.part1.rar.html
http://rg.to/file/7f7f4549ae89d3db0007979577350320/FXPHDPYT201PythonFundamentalsforthePipeline.part2.rar.html
http://rg.to/file/49bb6cebbf6c3a4ba42eec562ed08081/FXPHDPYT201PythonFundamentalsforthePipeline.part3.rar.html
http://rg.to/file/b1cdcf2c91f9be2511146f5596f58ef4/FXPHDPYT201PythonFundamentalsforthePipeline.part4.rar.html
http://rg.to/file/97ef8b617572c1f571198120cb335ee3/FXPHDPYT201PythonFundamentalsforthePipeline.part5.rar.html
http://rg.to/file/cfb0d182d02662fe8ae5bc6790079faf/FXPHDPYT201PythonFundamentalsforthePipeline.part6.rar.html

Alfafile

http://alfafile.net/file/9QBq
http://alfafile.net/file/9QBs
http://alfafile.net/file/9QBW
http://alfafile.net/file/9QB2
http://alfafile.net/file/9QB6
http://alfafile.net/file/9QB7

Nitroflare

http://nitroflare.com/view/6579416B3EBE334/FXPHDPYT201PythonFundamentalsforthePipeline.part6.rar
http://nitroflare.com/view/8795B3EF4599927/FXPHDPYT201PythonFundamentalsforthePipeline.part2.rar
http://nitroflare.com/view/0171685192B52E3/FXPHDPYT201PythonFundamentalsforthePipeline.part3.rar
http://nitroflare.com/view/D50D840DD4F914F/FXPHDPYT201PythonFundamentalsforthePipeline.part4.rar
http://nitroflare.com/view/0189D86BE95A973/FXPHDPYT201PythonFundamentalsforthePipeline.part1.rar
http://nitroflare.com/view/9E16B03FADCBD9F/FXPHDPYT201PythonFundamentalsforthePipeline.part5.rar

CGP

Posts navigation

← FXPHD – NUK242 NUKE Tips and Tricks, Volume 3
FXPHD – C4D222 Cinema 4D Particles Masterclass →
  • Search

  • RSS Feed

    CGPersia Official Telegram Channel

    CGPersia IRC Chat

  • Categories

    • Downloads (27,965)
      • CG Releases (25,790)
        • 2D (17,740)
          • Textures (583)
        • 3D (4,766)
          • 3D Models (1,673)
        • Softwares (9,850)
          • Linux (626)
          • Mac (1,982)
          • Plugins (3,911)
          • Windows (8,177)
      • Collection (538)
      • Learning (15,590)
        • Ebooks (277)
        • Tutorials (15,313)
          • Videos (13,254)
      • Miscellaneous (225)
      • Torrent (1,013)
  • Recent Posts

    • CGAxis – Physical 9 Complete
    • Motion Design School – Blender RockStar
    • Udemy – Unity 2D: Creative Game Development for Beginners
    • Compositing Academy – Nuke Compositing Career Starter Bundle
    • Udemy – Hard-Surface modeling in Blender
    • ArtStation – Ultimate Gun and Weapon Smart Materials for Substance 3D Painter
    • Learn Squared – Painting Historical Fiction
    • Underpaint Academy – Successful Character Design with Leslie Tran
    • Udemy – The Making of Hellboy: Part 1_Modeling
    • SideFX Houdini INDIE 20.5.593 Win x64
    • Udemy – After Effects 2025: Complete Motion Graphics & VFX Course
    • Plasticity – Car 3D Modeling Course
    • Udemy – Build A Modular Weapon Firing System In Unreal Engine 5
    • Adobe Lightroom 8.3.1 Win x64
    • Udemy – KATANA | Mastering LookDev & Lighting for the VFX industry
  • July 2017
    M T W T F S S
     12
    3456789
    10111213141516
    17181920212223
    24252627282930
    31  
    « Jun   Aug »
  • Tag Cloud

    3d modeling 3ds Max Adobe Adobe After Effects Adobe Photoshop Adobe Premiere Pro After Effects Animation Arnold Artstation Autodesk Blender Cinema 4D Digital-Tutors digital editing digital painting Digital Sculpting eLearning Evermotion FBX Game Development Gnomon Graphic Arts Gumroad Houdini Lightroom lynda Maya Mirrors Modeling Nuke Photoshop Plugins Pluralsight Skillshare Substance Painter Training Udemy Unity Unreal Engine Unreal Engine 4 Video editing Video Learning Vray Zbrush
  • RSS CG Channel News

    • WARNING: Be sure to scan all the downloaded files with your Antivirus and if there is an executable or installer file, make sure to have your antivirus active and open in the background while installing or running the app. Some of the materials posted here are downloaded from CGPeers, So they could potentially have something injected in them.
    • We always ask bloggers to scan all the files before publishing the posts, but sometimes it's hard to detect all these things, so if you found anything suspicious (Not false positive, Generic, Patcher, Riskware and Heuristic results, most patches could get false flags like that by some Antivirus companies.) be sure to post comments with the file name and a VirusTotal report result link or the file MD5 Hash (higher than 30% overall positive result). Thank you.

    • CAUTION:
      We do NOT sell invites here or anywhere else. Any seller claiming to have the rights to sell invites is LYING.
      Do not attempt to buy invites or accounts from any site, marketplace, social media, etc. You’ll likely get banned at some point so don't risk it!

  • Donation