Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
43 views
Summer Training Report On Python PDF
Uploaded by
Ghazi Burybury
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Summer Training Report On Python.pdf For Later
Download
Save
Save Summer Training Report On Python.pdf For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
43 views
Summer Training Report On Python PDF
Uploaded by
Ghazi Burybury
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Summer Training Report On Python.pdf For Later
Carousel Previous
Carousel Next
Save
Save Summer Training Report On Python.pdf For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 20
Search
Fullscreen
A Summer Training Report On Python and it’s Libraries Under the Guidance of Mr. Anand Handa Sir(IITK) Done By SHUBHAM YADAV (1573613037) At IQRA Software Technologies Private Limited Sharda Nagar ,Kanpur Nagar,U.P. Submitted To 2s. ot P< Department of Information Technology Rajkiya Engineering College , Azamgarh Approved By AICTE, New Delhi & Govt. of U.P., Affiliated to AKTU, LUCKNOW Vill- Akbalpur, Post Devgaon, Azamgarh, Uttar Pradesh 276201REPORT CONTENT “+ Introduction of Industry “History of Python * Why Python ? “+ Characteristics of Python + Data Structures in Python + File Handling in Python “+ Use of Numpy + Use of Matplotlib “* Use of Pandas “+ Use of OpenCV “ ConclusionIntroduction of Industry IQRA Software Technologies, is a premier institute which provides IT and software skills training in Scientific & Engineering field with best quality at lower costs. We are one of the fastest growing software solution, technical consultancy and knowledge outsourcing company situated in India with offices at Bangalore, Kanpur and Lucknow. Mission IQRA Software is committed to its role in technical training individuals or corporate in areas of Speech Compression, Image Processing, Control System, Wireless LAN, VHDL, Verilog, MATLAB (SciLab), DSP TMS320C67xx, Java, Microsoft.Net, Software Quality Testing, SDLC & Implementation, Project Management, Manual Testing, Silk Test, Mercury Test, QTP, Test Director for Quality Center. Vision DSP, VLSI, Embedded and Software testing are one of the fastest growing areas in IT across the globe. Our vision is to create a platform, where trainees/students are able to learn different features of technologies to secure a better position in IT industry or to improve their careers.History of Python Python was developed in 1980 by Guido van Rossum at the National Research Institute for Mathematics and Computer Science in the Netherlands as a successor of ABC language capable of exception handling and interfacing. Python features a dynamic type system and automatic memory management. It supports multiple programming paradigms, including object-oriented, imperative, functional and procedural, and has a large and comprehensive standard library. Van Rossum picked the name Python for the new language from a TV show, Monty Python's Flying Circus. In December 1989 the creator developed the 1st python interpreter as a hobby and then on 16 October 2000, Python 2.0 was released with many new features. ..[n December 1989, | was looking for a "hobby" programming project that would keep me occupied during the week around Christmas. My office ... would be closed, but | had a home computer, and not much else on my hands. | decided to write an interpreter for the new scripting language | had been thinking about lately: a descendant of ABC that would appeal to Unix/C hackers. | chose Python as a working title for the project, being in a slightly irreverent mood (and a big fan of Monty Python's Flying Circus) — Guido van RossumPython Releases + Python 1.0 - January 1994 + Python 1.5 - December 31, 1997 + Python 1.6 - September 5, 2000 “+ Python 2.0 - October 16, 2000 + Python 2.1 - April 17, 2001 “+ Python 2.2 - December 21, 2001 + Python 2.3 - July 29, 2003 * Python 2.4 - November 30, 2004 + Python 2.5 - September 19, 2006 + Python 2.6 - October 1, 2008 “+ Python 2.7 - July 3, 2010 + Python 3.0 - December 3, 2008 + Python 3.1 - June 27, 2009 + Python 3.2 - February 20, 2011 “% Python 3.3 - September 29, 2012 + Python 3.4 - March 16, 2014 “% Python 3.5 - September 13, 2015 + Python 3.6 - December 23, 2016Why Python ? The language's core philosophy is summarized in the document The Zen of Python (PEP 20), which includes aphorisms such as... + Beautiful is better than ugly + Simple is better than complex + Complex is better than complicated + Readability counts + Explicit is better than implicit Asimple Program to print "Hello World” EVE meCle (3 Python Code public class HelloWorld print (“Hello World!”) public static void main(String args [] ) { System. out.printin ("Hello World!”) } }Characteristics of Python Interpreted Language: Python is processed at runtime by Python Interpreter compile output source code execut Hello.java G (ea Hello,java Hello.dass byte code Hello.c lass Hello.py * Easy to read: Python source-code is clearly defined and visible to the eyes. + Portable: Python codes can be run on a wide variety of hardware platforms having the same interface. + Extendable: Users can add low level-modules to Python interpreter. * Scalable: Python provides an improved structure for supporting large programs than shell-scripts. * Object-Oriented Language: It supports object-oriented features and techniques of programming.* Interactive Programming Language: Users can interact with the python interpreter directly for writing programs. + Easy language: Python is easy to learn language especially for beginners. * Straight forward Syntax: The formation of python syntax is simple and straightforward which also makes it popular. Data Structures in Python LISTS- * Ordered collection of data. © Supports similar slicing and indexing functionalities as in the case of Strings. * They are mutable. © Advantage of a list over a conventional array + Lists have no size or type constraints(no setting restrictions beforehand). + They can contain different object types. + We can delete elements from a list by using Del list_namefindex_val] © Example- + my_list = ['one’, 'two!,'three',4,5] + len(my_list) would output 5. Dictionary- ‘Lists are sequences but the dictionaries are mappings. © They are mappings between a unique key and a value pair. ‘© These mappings may not retain order. © Constructing a dictionary. * Accessing object from a dictionary. © Nesting Dictionaries. * Basic Dictionary Methods.© Basic Syntax o d={} empty dictionary will be generated and assign keys and values to it, like d[’animal’] = ‘Dog’ o d={'K1''V1', 'K2":'V2'} © d['K1'] outputs 'V1 Tuples- ‘* Immutable in nature, i.e they cannot be changed. © No type restriction © Indexing and slicing, everything's same like that in strings and lists. © Constructing tuples. * Basic tuple methods. © Immutability. © When to use tuples? ‘* We can use tuples to present things that shouldn't change, such as days of the week, or dates on a calendar, etc. Sets- * Asset contains unique and unordered elements and we can construct them by using a set() function. * Convert a list into Set- © 1>(1,2,3,4,1,1,2,3,6,7] * k=set(l) © k becomes {1,2,3,4,6,7} © Basic Syntax- © xzset() © xadd(1) © x= {1} © xadd(1) © This would make no change in x nowle Handling in Python- Python too supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files. The concept of file handling has stretched over various other languages, but the implementation is either complicated or lengthy, but alike other concepts of Python, this concept here is also easy and short. Python treats file differently as text or binary and this is important. Each line of code includes a sequence of characters and they form text file. Each line ofa file is terminated with a special character, called the EOL or End of Line characters like comma {,} or newline character. It ends the current line and tells the interpreter a new one has begun. Let's start with Reading and Writing files. We use open () function in Python to open a file in read or write mode. As explained above, open ( ) will return a file object. To return a file object we use open () function along with two arguments, that accepts file name and the mode, whether to read or write. So, the syntax being: open(filename, mode). There are three kinds of mode, that Python provides and how files can be opened: + "r" for reading. “w" for writing, + “a“, for appending. + "re", for both reading and writing Ex-It is a notepad file (101.txt) (Bh 101 - Notepaa - o x File Edit Format View Help america , world most powerful country and also have a powerful economy. But President of Usa is 3rd powerful person in the world today 26/10/2016. mericans are perfect about their workCode in python dic-{} words=[] with open("101.txt")as fi: for line in f1: words -words+line.split() for 1 in range(len(words)): count for j in range(len(words) if words[i]=-words[j count-count +1 dic(words[i]]-count for count in dic: print(counts" “sstr(dic{count])) f4-open("105.txt”,"a+") 4.writelines(count+” “+str(dic[count])) It read the words from 101.txt file and print the all words which are present in the file and also tell that word occurring howmany times. america 1 cia world 2 most 2 powerful 3 country 2 and 1 also 4 have 2 aa economy. But 1 President 1 ofa Usa 2 isa Brd a person 2 ina the 1 today 1 26/10/2016. 4 americans 1 area perfect 2 about 1 their 1 work 2Use of Numpy- NumPy is a Python package. It stands for ‘Numerical Python’. It is a library consisting of multidimensional array objects and a collection of routines for processing of array. Numeric, the ancestor of NumPy, was developed by Jim Hugunin. Another package Numarray was also developed, having some additional functionalities. In 2005, Travis Oliphant created NumPy package by incorporating the features of Numarray into Numeric package. There are many contributors to this open source project. Operations using NumPy Using NumpPy, a developer can perform the following operations — = Mathematical and logical operations on arrays. «Fourier transforms and routines for shape manipulation. = Operations related to linear algebra. NumPy has in-built functions for linear algebra and random number generation. Simple program to create a matrix- First of all we import numpy package then using this we take input in numpy function as a list then we create a matrix import numpy as np benp.array([[1,6,5,2,3,45]]) b.shape=(3,2) print(b) (1 6] [s 2] (3 45]) There is many more function can be perform by using this like that take sin value of the given value ,print a zero matrix etc. we also take any image in the form of array.J: 2 = np.zeres((8,8) .dtype-int) print (2) [[eee0eceee) feeececoee’ [ecceeceeo; [eeeeeooe feeeeeeooe) [eeeeceece)] [eeeececoe: feeeeecoe)} 1: import numpy as np 2 np.array([6, 28,45,68,90}) print (‘Sine of different angles:" ) # Convert to radions by multiplying with pi/1so print (np-sin(a*np-pi/1s@) > print ¢*\n") print (‘Cosine values for angles in array: print (np.cos(a*np-pi/1s@) ) print ("\n") Sine of different angle: te. es @.7e710678 62660254 1 1 Cosine values for angles in array: [1-eeeeceeee+oe 8.5602540de-01 7.07106781e-01 5.e00e0eee-e1 '6.12323400e-17] Use of Matplotlib- Matplotlib is a library for making 2D plots of arrays in Python. Although it has its origins in emulating the MATLAB graphics commands, it is independent of MATLAB, and can be used in a Pythonic, object oriented way. Although Matplotlib is written primarily in pure Python, it makes heavy use of NumPy and other extension code to provide good performance even for large arrays. Matplotlib is designed with the philosophy that you should be able to create simple plots with just a few commands, or just one! If you want to see a histogram of your data, you shouldn't need to instantiate objects, call methods, set properties, and so on; it should just work. These are the some example of matplotlib..Inport metp tot tb os wp SeatplotLib inline lees it-sopcieie pies ane at plotting") aK: {Labels 'pleying!sLinewidthes) £, sleeping, eating, working, playing,colors-('m'"¢"s°r's°°D plesahewt)ze [28] 0 [36] daye-[1,2,3,4,5] slteoing-t7-a2¢-32.71 +, colors-col, startangle-s0, 4,0,0),autopet- "A178" ) plt-title(‘pie plot’) plesshow() pie plot import datetine as OT From matplotlib Inport pyplot as plt from matplotlib.dates import dateZnum ddata-[(OT.datetine.strptine( ‘16-10-03 "),772.559996), (OT-datetine.strptine( ‘16-10-08 1"), 775.559998), (OT-datetine.strptine( ‘16-10-05; "),778.539998), (O-datetine.strptine( 16-10-06: "),771.559998), (OT.datetine.strptine( 16-10-07 ),778.559998)} x=[dateznun(date) for (dete,velue) in dato) y-[value for (date,value) in deta] Hg-plt-figure() igroph=Fig-0de_subplot(111) {Ereph.plot(x,y, 'e-0") graph. set_xticks() raph. set_xticklabels([date.strftine("Xy-Ra-Rd") for (dste,value) in deta]) plt.xdabel("values") plt.ylabel('dates") plt.grid(Linestyle-"-',linewideh= ple. show() seolor='blue") ™ m wsib03 weibor —ieibos —ieibae e607Use of Pandas- Pandas is an open-source, BSD-licensed Python library providing high- performance, easy-to-use data structures and data analysis tools for the Python programming language. Python with Pandas is used in a wide range of fields including academic and commercial domains including finance, economics, Statistics, analytics, etc. Pandas is an open-source Python Library providing high-performance data manipulation and analysis tool using its powerful data structures. The name Pandas is derived from the word Panel Data — an Econometrics from Multidimensional data. Key Features of Pandas- + Fast and efficient DataFrame object with default and customized indexing. + Tools for loading data into in-memory data objects from different file formats. + Data alignment and integrated handling of missing data. + Reshaping and pivoting of date sets + Label-based slicing, indexing and subsetting of large data sets. + Columns from a data structure can be deleted or inserted. + Group by data for aggregation and transformations. Pandas deals with the following three data structures — + Series + DataFrame + Panel These data structures are built on top of Numpy array, which means they are fast.In [2]: | import pandas as pd In [2]: | df-pd.Oatarrame() print(ar) empty Dstarrame foes ED Endext (3 In [3]: | data=[1,2,3.4,5,6] Gf-pasDatarreme (date) print(ar) zn [4] ze [7]: :[20,22,131) prine(ae) oe 78S Sie 3 2 ef a3 Use of OpenCv- OpenCVv was started at Intel in 1999 by Gary Bradsky and the first release came out in 2000, Vadim Pisarevsky joined Gary Bradsky to manage Intel’s Russian software OpenCV team. In 2005, OpenCV was used on Stanley, the vehicle who won 2005 DARPA Grand Challenge. Later its active development continued under the support of Willow Garage, with Gary Bradsky and Vadim Pisarevsky leading the project. Right now, OpenCV supports a lot of algorithms related to Computer Vision and Machine Learning and it is expanding day-by-day. Below is the list of contributors who submitted tutorials to OpenCV-Python. -Alexander Mordvintsev (GSoC-2013 mentor) -Abid Rahman K. (GSoC-2013 intern)Use the function- cv2.imread() to read an image. The image should be in the working directory or a full path of image should be given. Second argument is a flag which specifies the way image should be read. + ev2.IMREAD_COLOR : Loads a color image. Any transparency of image will be neglected. It is the default flag. + cv2.IMREAD_GRAYSCALE : Loads image in grayscale mode * cv2.IMREAD_UNCHANGED : Loads image as such including alpha channel Use the function cv2.imshow/) to display an image in a window. The window automatically fits to the image size. in [2]: | import ev2 In [6]: | imgeev2.imread ("modi png") In [*]: | ev2-namediiindow( image" ,cv2.WINDOH_AUTOSIZE) v2. imshou( 'imoge' , img) cv2.waitkey (2) cv2.destroyAllWindows ("image") This program change image from colour to black&white.Trackbar as the Color Palette- Code- 2 ef enptyFunc pass. ef n3in() ing3enp.zeros((512,512,3),np.uints) reindowiones(‘shubhon yaday v2. nanedvindow(windowiane) eva. createTrackoar('' incowtiane, 0,255, enptyFunct ion ‘ev2.createrrackbar( 's" windowane,0, 255 empty Funct ion) (v2. createTrackbar("" windoxtane, 0,255, enptyPunction) siile(True) (2. {shou (windowuane, tng3) AF cya.wattKey(1)==2 break blue-cv2. getTrackbarPos('e (reen-cv2.getTrackbarPos( ed-cv2.gettrackbarros( R* indowiane) ings{:]-folue,green,red) rint(blue,green,red) cv2.destroyal tnaows() print eain( seingowiane) incousiane) Result- It works on BGR colour system.Conclusion- | believe the trial has shown conclusively that it is both possible and desirable to use Python as the principal teaching language: + Itis Free (as in both cost and source code). * Itis trivial to install on a Windows PC allowing students to take their interest further. For many the hurdle of installing a Pascal or C compiler on a Windows machine is either too expensive or too complicated; + Itis a flexible tool that allows both the teaching of traditional procedural programming and modern OOP. + Itcan be used to teach a large number of transferable skills. + [tis a real-world programming language that can be and is used in academia and the commercial world * It appears to be quicker to learn and, in combination with its many libraries, this offers the possibility of more rapid student development allowing the course to be made more challenging and varied. + and most importantly, its clean syntax offers increased understanding and enjoyment for students. The training program having three destination was a lot more useful than staying at one place throughout the whole 4 weeks. in my opinion. | have gained lots of knowledge and experience needed to be successful in great engineering challenge as in my opinion, Engineering is after all a Challenge ,and not a job
You might also like
Shadow Work Journal Free PDF
PDF
91% (164)
Shadow Work Journal Free PDF
30 pages
Hourglass Workout Program by Luisagiuliet 2
PDF
76% (21)
Hourglass Workout Program by Luisagiuliet 2
51 pages
Book of Wisdom 2
PDF
87% (166)
Book of Wisdom 2
70 pages
BLING A Novel by Erica Kennedy
PDF
100% (18)
BLING A Novel by Erica Kennedy
468 pages
Make Your CPN Instrctions
PDF
96% (200)
Make Your CPN Instrctions
21 pages
12 Week Program: Summer Body Starts Now
PDF
87% (46)
12 Week Program: Summer Body Starts Now
70 pages
Knee Ability Zero Now Complete As A Picture Book 4 PDF Free
PDF
94% (68)
Knee Ability Zero Now Complete As A Picture Book 4 PDF Free
49 pages
Aussie Fitness - Low Calorie High Protein Recipes (BOOTLEG)
PDF
100% (12)
Aussie Fitness - Low Calorie High Protein Recipes (BOOTLEG)
462 pages
The Hold Me Tight Workbook - Dr. Sue Johnson
PDF
100% (16)
The Hold Me Tight Workbook - Dr. Sue Johnson
187 pages
Read People Like A Book by Patrick King-Edited
PDF
58% (78)
Read People Like A Book by Patrick King-Edited
12 pages
GB Level Up Guide 3 Elevate PDF
PDF
79% (28)
GB Level Up Guide 3 Elevate PDF
115 pages
Livingood, Blake - Livingood Daily Your 21-Day Guide To Experience Real Health
PDF
77% (13)
Livingood, Blake - Livingood Daily Your 21-Day Guide To Experience Real Health
260 pages
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
From Everand
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
Mark Manson
4/5 (6386)
Cheat Code To The Universe
PDF
94% (79)
Cheat Code To The Universe
34 pages
Facial Gains Guide (001 081)
PDF
91% (45)
Facial Gains Guide (001 081)
81 pages
No Grid Survival Projects - Sophia Hall
PDF
91% (11)
No Grid Survival Projects - Sophia Hall
126 pages
Curse of Strahd
PDF
95% (467)
Curse of Strahd
258 pages
The Psychiatric Interview - Daniel Carlat
PDF
91% (34)
The Psychiatric Interview - Daniel Carlat
473 pages
Hadestown Piano Vocal Score
PDF
95% (21)
Hadestown Piano Vocal Score
341 pages
Sisterly Lust Walkthrough
PDF
77% (96)
Sisterly Lust Walkthrough
26 pages
Can't Hurt Me
PDF
69% (29)
Can't Hurt Me
10 pages
Mandate For Leadership Policy Recommendations
PDF
77% (62)
Mandate For Leadership Policy Recommendations
19 pages
The Borax Conspiracy
PDF
91% (57)
The Borax Conspiracy
14 pages
Carl Hart, Charles Ksir - Drugs, Society, and Human Behavior (2015)
PDF
100% (17)
Carl Hart, Charles Ksir - Drugs, Society, and Human Behavior (2015)
495 pages
Dare To Lead by Brené Brown
PDF
45% (11)
Dare To Lead by Brené Brown
2 pages
Combs Indictment
PDF
91% (11)
Combs Indictment
14 pages
D&D Player Handbook 5e
PDF
96% (336)
D&D Player Handbook 5e
293 pages
Shortcut To Shred Ebook Revised 9-9-2015 PDF
PDF
88% (8)
Shortcut To Shred Ebook Revised 9-9-2015 PDF
15 pages
Workbook For Adult Children of Emotionally Immature Parents - How To Heal From Distant, Rejecting, or Self-Involved Parents
PDF
88% (16)
Workbook For Adult Children of Emotionally Immature Parents - How To Heal From Distant, Rejecting, or Self-Involved Parents
77 pages
Five Wishes (Rev 06.2011)
PDF
57% (7)
Five Wishes (Rev 06.2011)
12 pages
34 Mystery of The Seven Keys Guide 1.0
PDF
100% (3)
34 Mystery of The Seven Keys Guide 1.0
108 pages
Trauma-Focused ACT - Russ Harris
PDF
95% (39)
Trauma-Focused ACT - Russ Harris
568 pages
Anastasia: The New Broadway Musical (LIBRETTO)
PDF
94% (175)
Anastasia: The New Broadway Musical (LIBRETTO)
117 pages
COSMIC CONSCIOUSNESS OF HUMANITY - PROBLEMS OF NEW COSMOGONY (V.P.Kaznacheev,. Л. V. Trofimov.)
PDF
94% (214)
COSMIC CONSCIOUSNESS OF HUMANITY - PROBLEMS OF NEW COSMOGONY (V.P.Kaznacheev,. Л. V. Trofimov.)
212 pages
Raisin in The Sun
PDF
97% (34)
Raisin in The Sun
92 pages
I Hate You - Don't Leave Me
PDF
80% (54)
I Hate You - Don't Leave Me
6 pages
New Oxford Annotated Bible With Apocrypha (NRSV) 4e, The - Bible
PDF
95% (61)
New Oxford Annotated Bible With Apocrypha (NRSV) 4e, The - Bible
2,440 pages
TDA Birth Certificate Bond Instructions
PDF
97% (284)
TDA Birth Certificate Bond Instructions
4 pages
Principles: Life and Work
From Everand
Principles: Life and Work
Ray Dalio
4/5 (634)
Complaint - Ventura V Combs
PDF
91% (11)
Complaint - Ventura V Combs
35 pages
The Secret Language of Attraction
PDF
86% (107)
The Secret Language of Attraction
278 pages
How To Develop and Write A Grant Proposal
PDF
83% (542)
How To Develop and Write A Grant Proposal
17 pages
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Brené Brown
4/5 (1160)
The Definitive Guide To Project 2025Fnl Project 2025
PDF
90% (10)
The Definitive Guide To Project 2025Fnl Project 2025
67 pages
Supreme Mathematics
PDF
80% (25)
Supreme Mathematics
1 page
Penis Enlargement Secret
PDF
60% (124)
Penis Enlargement Secret
12 pages
Workbook For The Body Keeps The Score
PDF
89% (53)
Workbook For The Body Keeps The Score
111 pages
Blue Beam Project
PDF
70% (20)
Blue Beam Project
3 pages
CPN Tut
PDF
95% (20)
CPN Tut
23 pages
Never Split the Difference: Negotiating As If Your Life Depended On It
From Everand
Never Split the Difference: Negotiating As If Your Life Depended On It
Chris Voss
4.5/5 (982)
Donald Trump & Jeffrey Epstein Rape Lawsuit and Affidavits
PDF
83% (1016)
Donald Trump & Jeffrey Epstein Rape Lawsuit and Affidavits
13 pages
KamaSutra Positions
PDF
78% (69)
KamaSutra Positions
55 pages
KamaSutra Positions
PDF
68% (84)
KamaSutra Positions
55 pages
Organizing Solutions For People With ADHD, 2nd Edition-Revised and Updated
PDF
95% (58)
Organizing Solutions For People With ADHD, 2nd Edition-Revised and Updated
221 pages
7 Hermetic Principles
PDF
93% (30)
7 Hermetic Principles
3 pages
Into The Wild Shadow Work Journal PDF n1cr4g
PDF
96% (27)
Into The Wild Shadow Work Journal PDF n1cr4g
79 pages
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Jeannette Walls
4/5 (8302)
27 Feedback Mechanisms Pogil Key
PDF
77% (13)
27 Feedback Mechanisms Pogil Key
6 pages
Frank Hammond - List of Demons
PDF
92% (92)
Frank Hammond - List of Demons
3 pages
Grit: The Power of Passion and Perseverance
From Everand
Grit: The Power of Passion and Perseverance
Angela Duckworth
4/5 (633)
Phone Codes
PDF
78% (27)
Phone Codes
5 pages
Bessel Van Der Kolk - The Body Keeps The Score - Brain, Mind, and Body in The Healing of Trauma-Penguin (2014)
PDF
100% (12)
Bessel Van Der Kolk - The Body Keeps The Score - Brain, Mind, and Body in The Healing of Trauma-Penguin (2014)
490 pages
36 Questions That Lead To Love
PDF
91% (35)
36 Questions That Lead To Love
3 pages
Sample Mental Health Progress Note
PDF
96% (47)
Sample Mental Health Progress Note
3 pages
How 2 Setup Trust
PDF
97% (307)
How 2 Setup Trust
3 pages
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Phil Knight
4.5/5 (933)
2025 MandateForLeadership FULL
PDF
70% (10)
2025 MandateForLeadership FULL
920 pages
House of Leaves - Mark Z Danielewski
PDF
80% (20)
House of Leaves - Mark Z Danielewski
750 pages
How To Kiss A Woman's Breast
PDF
60% (114)
How To Kiss A Woman's Breast
14 pages
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
From Everand
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
Ben Horowitz
4.5/5 (361)
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
From Everand
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
Margot Lee Shetterly
4/5 (1007)
For Good - Wicked
PDF
100% (12)
For Good - Wicked
9 pages
(Psilocybin) How To Grow Magic Mushrooms A Simple Psilocybe Cubensis Growing Technique PDF
PDF
75% (8)
(Psilocybin) How To Grow Magic Mushrooms A Simple Psilocybe Cubensis Growing Technique PDF
48 pages
Singer's Anthology Master Song and Show Index 2008 PDF
PDF
37% (43)
Singer's Anthology Master Song and Show Index 2008 PDF
38 pages
Cellular Communication POGIL
PDF
80% (10)
Cellular Communication POGIL
5 pages
36 Questions To Fall in Love 1
PDF
97% (32)
36 Questions To Fall in Love 1
2 pages
Lundy - Why Does He Do That PDF
PDF
79% (42)
Lundy - Why Does He Do That PDF
1,020 pages
Steve Jobs
From Everand
Steve Jobs
Walter Isaacson
4/5 (3237)
The 36 Questions That Lead To Love - The New York Times
PDF
94% (34)
The 36 Questions That Lead To Love - The New York Times
3 pages
100 Questions To Ask Your Partner
PDF
80% (35)
100 Questions To Ask Your Partner
2 pages
48 Laws of Power Cheat Sheet
PDF
97% (30)
48 Laws of Power Cheat Sheet
6 pages
25 Most Valuable US Pennies
PDF
94% (16)
25 Most Valuable US Pennies
4 pages
Encyclopedia of Herbal Medicine - 3rd Edition (DK Publishing) (2016)
PDF
99% (162)
Encyclopedia of Herbal Medicine - 3rd Edition (DK Publishing) (2016)
338 pages
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
From Everand
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
Ashlee Vance
4.5/5 (581)
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
Siddhartha Mukherjee
4.5/5 (297)
Satanic Calendar
PDF
25% (56)
Satanic Calendar
4 pages
The Startup Guide - Create A Business Plan
PDF
88% (199)
The Startup Guide - Create A Business Plan
26 pages
Do You Like Big Girls V01
PDF
19% (26)
Do You Like Big Girls V01
161 pages
The 36 Questions That Lead To Love - The New York Times
PDF
95% (21)
The 36 Questions That Lead To Love - The New York Times
3 pages
14 Easiest & Hardest Muscles To Build (Ranked With Solutions)
PDF
100% (7)
14 Easiest & Hardest Muscles To Build (Ranked With Solutions)
27 pages
Jeffrey Epstein39s Little Black Book Unredacted PDF
PDF
75% (12)
Jeffrey Epstein39s Little Black Book Unredacted PDF
95 pages
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Frank McCourt
4.5/5 (943)
The Self Confidence Workbook
PDF
96% (104)
The Self Confidence Workbook
139 pages
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
Sarah M. Broom
4/5 (100)
The Little Book of Hygge: Danish Secrets to Happy Living
From Everand
The Little Book of Hygge: Danish Secrets to Happy Living
Meik Wiking
3.5/5 (458)
The Book of Enoch
PDF
100% (80)
The Book of Enoch
265 pages
Yes Please
From Everand
Yes Please
Amy Poehler
4/5 (1993)
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
From Everand
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
Gilbert King
4.5/5 (278)
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Thomas L. Friedman
3.5/5 (2283)
Starbucks Underfilled Latte Lawsuit
PDF
68% (76)
Starbucks Underfilled Latte Lawsuit
24 pages
How To Come Up With Good Ideas For Startups - The Scribd Story and The Trip Method
PDF
87% (487)
How To Come Up With Good Ideas For Startups - The Scribd Story and The Trip Method
22 pages
Bad Feminist: Essays
From Everand
Bad Feminist: Essays
Roxane Gay
4/5 (1077)
The Woman in Cabin 10
From Everand
The Woman in Cabin 10
Ruth Ware
3.5/5 (2780)
Independent Contractor Agreements
PDF
80% (839)
Independent Contractor Agreements
3 pages
The Outsider: A Novel
From Everand
The Outsider: A Novel
Stephen King
4/5 (2838)
ALCHEMIST
PDF
64% (14)
ALCHEMIST
4 pages
1001 Songs
PDF
69% (72)
1001 Songs
1,798 pages
Trademark License Agreement
PDF
79% (382)
Trademark License Agreement
3 pages
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
From Everand
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
Viet Thanh Nguyen
4.5/5 (141)
The 4 Hour Workweek, Expanded and Updated by Timothy Ferriss - Excerpt
PDF
23% (954)
The 4 Hour Workweek, Expanded and Updated by Timothy Ferriss - Excerpt
38 pages
Zodiac Sign & Their Most Common Addictions
PDF
63% (30)
Zodiac Sign & Their Most Common Addictions
9 pages
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Dave Eggers
3.5/5 (692)
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Doris Kearns Goodwin
4.5/5 (1912)
On Fire: The (Burning) Case for a Green New Deal
From Everand
On Fire: The (Burning) Case for a Green New Deal
Naomi Klein
4/5 (76)
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Bob Woodward
3.5/5 (830)
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Jay Sekulow
3.5/5 (143)
John Adams
From Everand
John Adams
David McCullough
4.5/5 (2544)
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
M L Stedman
4.5/5 (813)
Noncompete Agreement
PDF
87% (141)
Noncompete Agreement
2 pages
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
George Packer
4/5 (45)