嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Learning Concurrency in Python(pdf epub mobi code_files).zip
.
├── Learning Concurrency in Python(pdf epub mobi code_files).zip_LearningConcurrencyinPython.zip
├── Learning Concurrency in Python_Code.zip
└── LearningConcurrencyinPython_Code
├── Chapter 01
│ ├── RxPySample.py
│ ├── concurrentCalculation.py
│ ├── concurrentImage.py
│ ├── eventDriven.py
│ ├── getCPUCount.py
│ ├── sequentialCalculation.py
│ ├── sequentialImage.py
│ └── simpleCounter.py
├── Chapter 02
│ ├── contextSwitching.py
│ ├── ioBottleneck.py
│ ├── ioBottleneck2.py
│ ├── ioBottleneck3.py
│ └── taskSheduler.py
├── Chapter 03
│ ├── classThread.py
│ ├── currentThread.py
│ ├── daemonThread.py
│ ├── enumerateThreads.py
│ ├── forkVsCreate.py
│ ├── forking.py
│ ├── forkingProcess.py
│ ├── gettingCurrentThread.py
│ ├── identifyingThreads.py
│ ├── killThread.py
│ ├── mainThread.py
│ ├── orphanThreads.py
│ ├── slowDown.py
│ ├── startingMulti.py
│ ├── startingThread.py
│ ├── threadLifecycle.py
│ └── totalThreads.py
├── Chapter 04
│ ├── barriers.py
│ ├── boundedSemaphores.py
│ ├── dataRaces.py
│ ├── diningPhilosophers.py
│ ├── events.py
│ ├── lockExample.py
│ ├── producerConsumer.py
│ ├── pubSub.py
│ ├── rlockVLock.py
│ ├── rlocks.py
│ ├── semaphores.py
│ └── threadJoin.py
├── Chapter 05
│ ├── appendDeque.py
│ ├── classDecorator.py
│ ├── decoratorSet.py
│ ├── deque.py
│ ├── deque.py.lprof
│ ├── fullQueue.py
│ ├── insertDeque.py
│ ├── lifoQueues.py
│ ├── lockSet.py
│ ├── priorityQueue.py
│ ├── queueJoin.py
│ ├── queueOperations.py
│ ├── queues.py
│ ├── removeDeque.py
│ ├── rotateDeque.py
│ ├── taskDone.py
│ └── webCrawler.py
├── Chapter 06
│ ├── __pycache__
│ │ ├── profile.cpython-36.pyc
│ │ ├── pycallgraph.cpython-36.pyc
│ │ ├── timeitCode.cpython-36.pyc
│ │ ├── timeitTest.cpython-36.pyc
│ │ └── timer.cpython-36.pyc
│ ├── decorator.py
│ ├── mprofile_20170518210842.dat
│ ├── mprofile_20170518210849.dat
│ ├── mprofile_20170518210919.dat
│ ├── profileTest.py
│ ├── profileTest.py.lprof
│ ├── pycallgraph.py
│ ├── pycallgraph.pyc
│ ├── threadException.py
│ ├── timeitCode.py
│ ├── timeitConstructor.py
│ ├── timeitContext.py
│ ├── timeitDecorator.py
│ ├── timeitTest.py
│ ├── timer.py
│ └── unittest.py
├── Chapter 07
│ ├── asCompleted.py
│ ├── cancellingCallable.py
│ ├── exceptionThread.py
│ ├── mapCallback.py
│ ├── poolImprovement.py
│ ├── processPool.py
│ ├── processPoolExe.py
│ ├── results.py
│ ├── settingCallbacks.py
│ ├── shutdownExecutor.py
│ ├── threadPool.py
│ ├── threadPoolExe.py
│ ├── threadPoolMap.py
│ └── verbose.py
├── Chapter 08
│ ├── applyAsync.py
│ ├── applyPool.py
│ ├── client.py
│ ├── contextPool.py
│ ├── daemonProcess.py
│ ├── exceptionHandling.py
│ ├── generators.py
│ ├── identifyProcess.py
│ ├── listener.py
│ ├── logging.py
│ ├── manager.py
│ ├── mapPool.py
│ ├── maxTasks.py
│ ├── mpExample.py
│ ├── mpQueue.py
│ ├── myapp.log
│ ├── nameProcess.py
│ ├── pipes.py
│ ├── pycsp.py
│ ├── pycsp1.py
│ ├── spawnProcess.py
│ ├── starmap.py
│ ├── starmapAsync.py
│ ├── subclass.py
│ ├── subprocess.py
│ └── terminateProcess.py
├── Chapter 09
│ ├── asyncioCondition.py
│ ├── asyncioEvent.py
│ ├── asyncioLock.py
│ ├── asyncioQueue.py
│ ├── asyncioTasks.py
│ ├── chainCoroutine.py
│ ├── debugAsyncio.py
│ ├── ensureFuture.py
│ ├── eventLoops.py
│ ├── future.py
│ ├── generator.py
│ ├── geventSimple.py
│ ├── greenlet.py
│ ├── loopForever.py
│ ├── runUntilComplete.py
│ ├── runningLoop.py
│ ├── simpleTwisted.py
│ ├── tcpClient.py
│ ├── tcpServer.py
│ ├── tmp
│ │ └── index.html
│ ├── twisted.py
│ └── webserver.py
├── Chapter 10
│ ├── allLambda.py
│ ├── chainingOperators.py
│ ├── combining.py
│ ├── concurrency.py
│ ├── createObservable.py
│ ├── emitEvents.py
│ ├── lambda.py
│ ├── mergeAll.py
│ ├── multicast.py
│ ├── multicasting.py
│ ├── observables.py
│ ├── pyFunctional.py
│ └── pyfilter.py
├── Chapter 11
│ ├── example.py
│ ├── gpu.py
│ ├── matrices.py
│ ├── numba.py
│ ├── pyOpenCL.py
│ └── theano.py
├── Chapter 12
│ ├── 1.py
│ └── 2.py
├── README.txt
└── Software and hardware list.pdf
15 directories, 167 files