├── -.Python.4-.II.2011.pdf ├── .gitignore ├── APress.-.Beginning.Python.From.Novice.to.Professional.2nd.Edition.pdf ├── Anders.Michel.-.Python.3.Web.Development.Beginners.Guide.-.2011.pdf ├── Beginning.Python.Using.Python.2.6.and.Python.3.1.pdf ├── Document.-.Scrapy.Document.Release.0.19.0.pdf ├── Document.-.The.Hacker.s.Guide.To.Python_Julien.Danjou.pdf ├── Ferrill.Paul.-.Pro.Android.Python.with.SL4A.-.2011.pdf ├── Folder ├── c-api.pdf ├── distutils.pdf ├── extending.pdf ├── faq.pdf ├── howto-advocacy.pdf ├── howto-argparse.pdf ├── howto-cporting.pdf ├── howto-curses.pdf ├── howto-descriptor.pdf ├── howto-doanddont.pdf ├── howto-functional.pdf ├── howto-logging-cookbook.pdf ├── howto-logging.pdf ├── howto-pyporting.pdf ├── howto-regex.pdf ├── howto-sockets.pdf ├── howto-sorting.pdf ├── howto-unicode.pdf ├── howto-urllib2.pdf ├── howto-webservers.pdf ├── install.pdf ├── library.pdf ├── python ├── reference.pdf ├── tutorial.pdf ├── using.pdf └── whatsnew.pdf ├── LPTHW.pdf ├── Lambert.K.A.-.Fundamentals.of.Python.From.First.Programs.through.Data.Structures.-.2009.pdf ├── Learning.Python.5th.Edition.pdf ├── Mark.Lutz.David.Ascher.-.Learning.Python.pdf ├── O.Reilly.-.Flask.Web.Python.Web.pdf ├── O.Reilly.-.Natural.Language.Processing.with.Python.pdf ├── O.Reilly.-.Programming.Collective.Intelligence.pdf ├── O.Reilly.-.Python.pdf ├── PACKT.-.Building.Machine.Learning.Systems.with.Python.-.RichertCoelho.pdf ├── PACKT.-.Packt.NumPy.Cookbook.2012.pdf ├── Python.-.Python.pdf ├── README.md ├── Shaw.Z.A.-.Learn.Python.the.Hard.Way.2nd.Edition.2011.PDF.ENG.pdf ├── functional.Python.pdf ├── inventwithpython_3rd.pdf ├── python.code.conventions.pdf ├── rock_paper_scissors.ipynb └── thinkCSpy.pdf /-.Python.4-.II.2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/-.Python.4-.II.2011.pdf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | 55 | # Sphinx documentation 56 | docs/_build/ 57 | 58 | # PyBuilder 59 | target/ 60 | 61 | #Ipython Notebook 62 | .ipynb_checkpoints 63 | -------------------------------------------------------------------------------- /APress.-.Beginning.Python.From.Novice.to.Professional.2nd.Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/APress.-.Beginning.Python.From.Novice.to.Professional.2nd.Edition.pdf -------------------------------------------------------------------------------- /Anders.Michel.-.Python.3.Web.Development.Beginners.Guide.-.2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Anders.Michel.-.Python.3.Web.Development.Beginners.Guide.-.2011.pdf -------------------------------------------------------------------------------- /Beginning.Python.Using.Python.2.6.and.Python.3.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Beginning.Python.Using.Python.2.6.and.Python.3.1.pdf -------------------------------------------------------------------------------- /Document.-.Scrapy.Document.Release.0.19.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Document.-.Scrapy.Document.Release.0.19.0.pdf -------------------------------------------------------------------------------- /Document.-.The.Hacker.s.Guide.To.Python_Julien.Danjou.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Document.-.The.Hacker.s.Guide.To.Python_Julien.Danjou.pdf -------------------------------------------------------------------------------- /Ferrill.Paul.-.Pro.Android.Python.with.SL4A.-.2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Ferrill.Paul.-.Pro.Android.Python.with.SL4A.-.2011.pdf -------------------------------------------------------------------------------- /Folder/c-api.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/c-api.pdf -------------------------------------------------------------------------------- /Folder/distutils.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/distutils.pdf -------------------------------------------------------------------------------- /Folder/extending.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/extending.pdf -------------------------------------------------------------------------------- /Folder/faq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/faq.pdf -------------------------------------------------------------------------------- /Folder/howto-advocacy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-advocacy.pdf -------------------------------------------------------------------------------- /Folder/howto-argparse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-argparse.pdf -------------------------------------------------------------------------------- /Folder/howto-cporting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-cporting.pdf -------------------------------------------------------------------------------- /Folder/howto-curses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-curses.pdf -------------------------------------------------------------------------------- /Folder/howto-descriptor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-descriptor.pdf -------------------------------------------------------------------------------- /Folder/howto-doanddont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-doanddont.pdf -------------------------------------------------------------------------------- /Folder/howto-functional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-functional.pdf -------------------------------------------------------------------------------- /Folder/howto-logging-cookbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-logging-cookbook.pdf -------------------------------------------------------------------------------- /Folder/howto-logging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-logging.pdf -------------------------------------------------------------------------------- /Folder/howto-pyporting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-pyporting.pdf -------------------------------------------------------------------------------- /Folder/howto-regex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-regex.pdf -------------------------------------------------------------------------------- /Folder/howto-sockets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-sockets.pdf -------------------------------------------------------------------------------- /Folder/howto-sorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-sorting.pdf -------------------------------------------------------------------------------- /Folder/howto-unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-unicode.pdf -------------------------------------------------------------------------------- /Folder/howto-urllib2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-urllib2.pdf -------------------------------------------------------------------------------- /Folder/howto-webservers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/howto-webservers.pdf -------------------------------------------------------------------------------- /Folder/install.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/install.pdf -------------------------------------------------------------------------------- /Folder/library.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/library.pdf -------------------------------------------------------------------------------- /Folder/python: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Folder/reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/reference.pdf -------------------------------------------------------------------------------- /Folder/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/tutorial.pdf -------------------------------------------------------------------------------- /Folder/using.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/using.pdf -------------------------------------------------------------------------------- /Folder/whatsnew.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Folder/whatsnew.pdf -------------------------------------------------------------------------------- /LPTHW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/LPTHW.pdf -------------------------------------------------------------------------------- /Lambert.K.A.-.Fundamentals.of.Python.From.First.Programs.through.Data.Structures.-.2009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Lambert.K.A.-.Fundamentals.of.Python.From.First.Programs.through.Data.Structures.-.2009.pdf -------------------------------------------------------------------------------- /Learning.Python.5th.Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Learning.Python.5th.Edition.pdf -------------------------------------------------------------------------------- /Mark.Lutz.David.Ascher.-.Learning.Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Mark.Lutz.David.Ascher.-.Learning.Python.pdf -------------------------------------------------------------------------------- /O.Reilly.-.Flask.Web.Python.Web.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/O.Reilly.-.Flask.Web.Python.Web.pdf -------------------------------------------------------------------------------- /O.Reilly.-.Natural.Language.Processing.with.Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/O.Reilly.-.Natural.Language.Processing.with.Python.pdf -------------------------------------------------------------------------------- /O.Reilly.-.Programming.Collective.Intelligence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/O.Reilly.-.Programming.Collective.Intelligence.pdf -------------------------------------------------------------------------------- /O.Reilly.-.Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/O.Reilly.-.Python.pdf -------------------------------------------------------------------------------- /PACKT.-.Building.Machine.Learning.Systems.with.Python.-.RichertCoelho.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/PACKT.-.Building.Machine.Learning.Systems.with.Python.-.RichertCoelho.pdf -------------------------------------------------------------------------------- /PACKT.-.Packt.NumPy.Cookbook.2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/PACKT.-.Packt.NumPy.Cookbook.2012.pdf -------------------------------------------------------------------------------- /Python.-.Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Python.-.Python.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python-Pdf-Books 2 | Python books in pdf 3 | -------------------------------------------------------------------------------- /Shaw.Z.A.-.Learn.Python.the.Hard.Way.2nd.Edition.2011.PDF.ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/Shaw.Z.A.-.Learn.Python.the.Hard.Way.2nd.Edition.2011.PDF.ENG.pdf -------------------------------------------------------------------------------- /functional.Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/functional.Python.pdf -------------------------------------------------------------------------------- /inventwithpython_3rd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/inventwithpython_3rd.pdf -------------------------------------------------------------------------------- /python.code.conventions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/python.code.conventions.pdf -------------------------------------------------------------------------------- /thinkCSpy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaraj119/Python-Pdf-Books/06d8d5930de5f9302522f894340aeb9031a66fa9/thinkCSpy.pdf --------------------------------------------------------------------------------