Movatterモバイル変換


[0]ホーム

URL:


Packt
Search iconClose icon
Search icon CANCEL
Subscription
0
Cart icon
Your Cart(0 item)
Close icon
You have no products in your basket yet
Save more on your purchases!discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Profile icon
Account
Close icon

Change country

Modal Close icon
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timerSALE ENDS IN
0Days
:
00Hours
:
00Minutes
:
00Seconds
Home> Data> Data Science> Streamlit for Data Science
Streamlit for Data Science
Streamlit for Data Science

Streamlit for Data Science: Create interactive data apps in Python , Second Edition

Arrow left icon
Profile Icon Tyler Richards
Arrow right icon
€28.99€32.99
Full star iconFull star iconFull star iconFull star iconHalf star icon4.5(33 Ratings)
eBookSep 2023300 pages2nd Edition
eBook
€28.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€28.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning
OR

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Table of content iconView table of contentsPreview book icon Preview Book

Streamlit for Data Science

Streamlit plotting demo

First, we're going to start to learn how to make Streamlit apps by reproducing the plotting demo we saw before in the Streamlit demo, with a Python file that we've made ourselves. In order to do that, we will do the following:

  1. Make a Python file where we will house all our Streamlit code.
  2. Use the plotting code given in the demo.
  3. Make small edits for practice.
  4. Run our file locally.

Our first step is to create a folder called plotting_app, which will house our first example. The following code makes this folder when run in the terminal, changes our working directory to plotting_app, and creates an empty Python file we'll call plot_demo.py:

mkdir plotting_appcd plotting_apptouch plot_demo.py

Now that we've made a file called plot_demo.py, open it with any text editor (if you don't have one already, I'm partial to VS Code (https://code.visualstudio.com/download). When you open it up, copy and paste the...

Making an app from scratch

Now that we've tried out the apps others have made, let's make our own! This app is going to focus on using the central limit theorem, which is a fundamental theorem of statistics that says that if we randomly sample with replacement enough from any distribution, then the distribution of the mean of our samples will approximate the normal distribution.

We are not going to prove this with our app, but instead, let's try to generate a few graphs that help explain the power of the central limit theorem. First, let's make sure that we're in the correct directory (in this case, thestreamlit_apps folder that we created earlier), make a new folder called clt_app, and toss in a new file.

The following code makes a new folder called clt_app, and again creates an empty Python file, this time called clt_demo.py:

mkdir clt_appcd clt_apptouch clt_demo.py

Whenever we start a new Streamlit app, we want to make sure to...

Summary

In this chapter, we started by learning how to organize our files and folders for the remainder of this book and quickly moved on to instructions for downloading Streamlit. We then built our first Streamlit application, Hello World, and learned how to run our Streamlit applications locally. Then we started building out a more complicated application to show the implications of the central limit theorem from the ground up, going from a simple histogram to accepting user input and formatting different types of text around our app for clarity and beautification.

By now, you should be comfortable with subjects such as basic data visualization, editing Streamlit apps in a text editor, and locally running Streamlit apps. We're going to dive more deeply into data manipulation in our next chapter.

Exploring Palmer’s Penguins

Beforewe begin working with this dataset, we should make some visualizations to better understand the data. As we saw before, we have many columns in this data, whether the bill length, the flipper length, the island the penguin lives on, or even the species of penguin. I’ve done the first visualization for us already in Altair, a popular visualization library that we will use extensively throughout this book because it is interactive by default and generally pretty:

Figure 2.2: Bill length and bill depth

From this, we can see that the Adelie penguins have a shorter bill length but generally have fairly deep bills. Now, what does it look like if we plot weight by flipper length?

Figure 2.3: Bill length and weight

Now we see that Gentoo penguins seem to be heavier than the other two species, and that bill length and body mass are positively correlated. These findings are not a huge surprise, but getting to these simple...

Flow control in Streamlit

Aswe talked about just before, there are two solutions to this data upload default situation. We can provide a default file to use until the user interacts with the application, or we can stop the app until a file is uploaded. Let’s start with the first option. The following code uses thest.file_uploader() function from within anif statement. If the user uploads a file, then the app uses that; if they do not, then we default to the file we have used before:

import altairas altimport pandasas pdimport seabornas snsimport streamlitas st st.title("Palmer's Penguins")st.markdown("Use this Streamlit app to make your own scatterplot about penguins!") penguin_file = st.file_uploader("Select Your Local Penguins CSV (default provided)")if penguin_fileisnotNone:    penguins_df = pd.read_csv(penguin_file)else:    penguins_df = pd.read_csv("penguins.csv") selected_x_var = st.selectbox( ...

Debugging Streamlit apps

We broadly have two options forStreamlit development:

  • Develop in Streamlit andst.write() as a debugger.
  • Explore in Jupyter and then copy to Streamlit.

Developing in Streamlit

In the first option, we write our code directly in Streamlit as we’re experimenting and exploring exactly what our application will do. We’ve basically been taking this option already, which works very well if we have less exploration work and more implementation work to do.

Pros:

  • What you see is what you get – there is no need to maintain both IPython and Python versions of the same app.
  • Better experience for learning how to write production code.

Cons:

  • A slower feedback loop (the entire app must run before feedback).
  • A potentially unfamiliar development environment.

Exploring in Jupyter and then copying to Streamlit

Another option is to utilize the extremely popular Jupyter data science product to write and test out the Streamlit app’s code before placing it in the necessary script and formatting it correctly. This can be useful for exploring new functions that will live in the Streamlit app, but it has serious downsides.

Pros:

  • The lightning-fast feedback loop makes it easier to experiment with very large apps.
  • Users may be more familiar with Jupyter.
  • The full app does not have to be run to get results, as Jupyter can be run in individual cells.

Cons:

  • Jupyter may provide deceptive results if run out of order.
  • “Copying” code over from Jupyter is time-consuming.
  • Python versioning may be different between Jupyter and Streamlit.

My recommendation here is to develop Streamlit apps inside the environment where they are going to be run (that is, a Python file)....

Data manipulation in Streamlit

Streamlit runs our Python file from the top down as a script, so we can perform datamanipulation with powerful libraries such aspandas in the same way that we might in a Jupyter notebook or a regular Python script. As we’ve discussed before, we can do all our regular data manipulation as normal. For our Palmer’s Penguins app, what if we wanted the user to be able to filter out penguins based on their gender? The following code filters our DataFrame usingpandas:

import streamlitas stimport pandasas pdimport altairas altimport seabornas snsst.title("Palmer's Penguins")st.markdown('Use this Streamlit app to make your own scatterplot about penguins!')penguin_file = st.file_uploader('Select Your Local Penguins CSV (default provided)')if penguin_fileisnotNone:    penguins_df = pd.read_csv(penguin_file)else:    penguins_df = pd.read_csv('penguins.csv')selected_x_var =...

An introduction to caching

As we create more computationally intensive Streamlit apps and begin to use and upload larger datasets, we should start thinking about the runtime of these apps and work to increase our efficiency whenever possible. The easiest way to make a Streamlit app more efficient is through caching, which is storing some results in memory so that the app does not repeat the same work whenever possible.

A good analogy for an app’s cache is a human’s short-term memory, where we keep bits of information close at hand that we think might be useful. When something is in our short-term memory, we don’t have to think very hard to get access to that piece of information. In the same way, when we cache a piece of information in Streamlit, we are making a bet that we’ll use that information often.

The way Streamlit caching works more specifically is by storing the results of a function in our app, and if that function is called with the same...

Persistence with Session State

One of the most frustrating parts of the Streamlit operating model fordevelopers starting out is the combination of two facts:

  1. By default, information is not stored across reruns of the app.
  2. On user input, Streamlits are rerun top-to-bottom.

These two facts make it difficult to make certain types of apps! This is best shown in an example. Let’s say that we want to make a to-do app that makes it easy for you to add items to your to-do list. Adding user input in Streamlit is really simple, so we can create one quickly in a new file calledsession_state_example.py that looks like the following:

import streamlitas stst.title('My To-Do List Creator')my_todo_list = ["Buy groceries","Learn Streamlit","Learn Python"]st.write('My current To-Do list is:', my_todo_list)new_todo = st.text_input("What do you need to do?")if st.button('Add the new To-Do...

Summary

This chapter was full of fundamental building blocks that we will use often throughout the remainder of this book, and that you will use to develop your own Streamlit applications.

In terms of data, we covered how to bring our own DataFrames into Streamlit and how to accept user input in the form of a data file, which brings us past only being able to simulate data. In terms of other skill sets, we learned how to use our cache to make our data apps faster, how to control the flow of our Streamlit apps, and how to debug our Streamlit apps usingst.write(). That’s it for this chapter. Next, we’ll move on to data visualization!

Learn more on Discord

To join the Discord community for this book – where you can share feedback, ask questions to the author, and learn about new releases – follow the QR code below:

https://packt.link/sl

Left arrow icon

Page1 of 12

Right arrow icon
Download code iconDownload Code

Key benefits

  • Create machine learning apps with random forest, Hugging Face, and GPT-3.5 turbo models
  • Gain an insight into how experts harness Streamlit with in-depth interviews with Streamlit power users
  • Discover the full range of Streamlit’s capabilities via hands-on exercises to effortlessly create and deploy well-designed apps

Description

If you work with data in Python and are looking to create data apps that showcase ML models and make beautiful interactive visualizations, then this is the ideal book for you. Streamlit for Data Science, Second Edition, shows you how to create and deploy data apps quickly, all within Python. This helps you create prototypes in hours instead of days!Written by a prolific Streamlit user and senior data scientist at Snowflake, this fully updated second edition builds on the practical nature of the previous edition with exciting updates, including connecting Streamlit to data warehouses like Snowflake, integrating Hugging Face and OpenAI models into your apps, and connecting and building apps on top of Streamlit databases. Plus, there is a totally updated code repository on GitHub to help you practice your newfound skills.You'll start your journey with the fundamentals of Streamlit and gradually build on this foundation by working with machine learning models and producing high-quality interactive apps. The practical examples of both personal data projects and work-related data-focused web applications will help you get to grips with more challenging topics such as Streamlit Components, beautifying your apps, and quick deployment.By the end of this book, you'll be able to create dynamic web apps in Streamlit quickly and effortlessly.

Who is this book for?

This book is for data scientists and machine learning enthusiasts who want to get started with creating data apps in Streamlit. It is terrific for junior data scientists looking to gain some valuable new skills in a specific and actionable fashion and is also a great resource for senior data scientists looking for a comprehensive overview of the library and how people use it. Prior knowledge of Python programming is a must, and you’ll get the most out of this book if you’ve used Python libraries like Pandas and NumPy in the past.

What you will learn

  • Set up your first development environment and create a basic Streamlit app from scratch
  • Create dynamic visualizations using built-in and imported Python libraries
  • Discover strategies for creating and deploying machine learning models in Streamlit
  • Deploy Streamlit apps with Streamlit Community Cloud, Hugging Face Spaces, and Heroku
  • Integrate Streamlit with Hugging Face, OpenAI, and Snowflake
  • Beautify Streamlit apps using themes and components
  • Implement best practices for prototyping your data science work with Streamlit

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date :Sep 29, 2023
Length:300 pages
Edition :2nd
Language :English
ISBN-13 :9781803232959
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning
OR

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Product Details

Publication date :Sep 29, 2023
Length:300 pages
Edition :2nd
Language :English
ISBN-13 :9781803232959
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99billed monthly
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconSimple pricing, no contract
€189.99billed annually
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick iconExclusive print discounts
€264.99billed in 18 months
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick iconExclusive print discounts

Frequently bought together


Causal Inference and Discovery in Python
Causal Inference and Discovery in Python
Read more
May 2023466 pages
Full star icon4.5 (50)
eBook
eBook
€28.99€32.99
€40.99
Streamlit for Data Science
Streamlit for Data Science
Read more
Sep 2023300 pages
Full star icon4.5 (33)
eBook
eBook
€28.99€32.99
€41.99
Machine Learning Engineering  with Python
Machine Learning Engineering with Python
Read more
Aug 2023462 pages
Full star icon4.6 (38)
eBook
eBook
€26.98€29.99
€37.99
Stars icon
Total120.97
Causal Inference and Discovery in Python
€40.99
Streamlit for Data Science
€41.99
Machine Learning Engineering  with Python
€37.99
Total120.97Stars icon

Table of Contents

14 Chapters
An Introduction to StreamlitChevron down iconChevron up icon
An Introduction to Streamlit
Technical requirements
Why Streamlit?
Installing Streamlit
Making an app from scratch
Finishing touches – adding text to Streamlit
Summary
Uploading, Downloading, and Manipulating DataChevron down iconChevron up icon
Uploading, Downloading, and Manipulating Data
Technical requirements
The setup – Palmer’s Penguins
Exploring Palmer’s Penguins
Flow control in Streamlit
Debugging Streamlit apps
Developing in Streamlit
Exploring in Jupyter and then copying to Streamlit
Data manipulation in Streamlit
An introduction to caching
Persistence with Session State
Summary
Data VisualizationChevron down iconChevron up icon
Data Visualization
Technical requirements
San Francisco Trees – a new dataset
Streamlit visualization use cases
Streamlit’s built-in graphing functions
Streamlit’s built-in visualization options
Summary
Machine Learning and AI with StreamlitChevron down iconChevron up icon
Machine Learning and AI with Streamlit
Technical requirements
The standard ML workflow
Predicting penguin species
Utilizing a pre-trained ML model in Streamlit
Training models inside Streamlit apps
Understanding ML results
Integrating external ML libraries – a Hugging Face example
Integrating external AI libraries – an OpenAI example
Summary
Deploying Streamlit with Streamlit Community CloudChevron down iconChevron up icon
Deploying Streamlit with Streamlit Community Cloud
Technical requirements
Getting started with Streamlit Community Cloud
A quick primer on GitHub
Deploying with Streamlit Community Cloud
Summary
Beautifying Streamlit AppsChevron down iconChevron up icon
Beautifying Streamlit Apps
Technical requirements
Setting up the SF Trees dataset
Using Streamlit tabs
Using the Streamlit sidebar
Picking colors with a color picker
Multi-page apps
Editable DataFrames
Summary
Exploring Streamlit ComponentsChevron down iconChevron up icon
Exploring Streamlit Components
Technical requirements
Adding editable DataFrames with streamlit-aggrid
Creating drill-down graphs with streamlit-plotly-events
Using Streamlit Components – streamlit-lottie
Using Streamlit Components – streamlit-pandas-profiling
Interactive maps with st-folium
Helpful mini-functions with streamlit-extras
Finding more Components
Summary
Deploying Streamlit Apps with Hugging Face and HerokuChevron down iconChevron up icon
Deploying Streamlit Apps with Hugging Face and Heroku
Technical requirements
Choosing between Streamlit Community Cloud, Hugging Face, and Heroku
Deploying Streamlit with Hugging Face
Deploying Streamlit with Heroku
Summary
Connecting to DatabasesChevron down iconChevron up icon
Connecting to Databases
Technical requirements
Connecting to Snowflake with Streamlit
Connecting to BigQuery with Streamlit
Summary
Improving Job Applications with StreamlitChevron down iconChevron up icon
Improving Job Applications with Streamlit
Technical requirements
Using Streamlit for proof-of-skill data projects
Improving job applications in Streamlit
Summary
The Data Project – Prototyping Projects in StreamlitChevron down iconChevron up icon
The Data Project – Prototyping Projects in Streamlit
Technical requirements
Data science ideation
Collecting and cleaning data
Making an MVP
Iterative improvement
Hosting and promotion
Summary
Streamlit Power UsersChevron down iconChevron up icon
Streamlit Power Users
Fanilo Andrianasolo
Adrien Treuille
Gerard Bentley
Arnaud Miribel and Zachary Blackwood
Yuichiro Tachibana
Summary
Other Books You May EnjoyChevron down iconChevron up icon
Other Books You May Enjoy
IndexChevron down iconChevron up icon
Index

Recommendations for you

Left arrow icon
LLM Engineer's Handbook
LLM Engineer's Handbook
Read more
Oct 2024522 pages
Full star icon4.9 (28)
eBook
eBook
€43.99
€54.99
Getting Started with Tableau 2018.x
Getting Started with Tableau 2018.x
Read more
Sep 2018396 pages
Full star icon4 (3)
eBook
eBook
€28.99€32.99
€41.99
Python for Algorithmic Trading Cookbook
Python for Algorithmic Trading Cookbook
Read more
Aug 2024404 pages
Full star icon4.2 (20)
eBook
eBook
€31.99€35.99
€44.99
RAG-Driven Generative AI
RAG-Driven Generative AI
Read more
Sep 2024338 pages
Full star icon4.3 (18)
eBook
eBook
€28.99€32.99
€40.99
Machine Learning with PyTorch and Scikit-Learn
Machine Learning with PyTorch and Scikit-Learn
Read more
Feb 2022774 pages
Full star icon4.4 (96)
eBook
eBook
€28.99€32.99
€41.99
€59.99
Building LLM Powered  Applications
Building LLM Powered Applications
Read more
May 2024342 pages
Full star icon4.2 (22)
eBook
eBook
€26.98€29.99
€37.99
Python Machine Learning By Example
Python Machine Learning By Example
Read more
Jul 2024518 pages
Full star icon4.9 (9)
eBook
eBook
€18.99€27.99
€27.98€34.99
AI Product Manager's Handbook
AI Product Manager's Handbook
Read more
Nov 2024488 pages
eBook
eBook
€23.99€26.99
€33.99
Right arrow icon

Customer reviews

Top Reviews
Rating distribution
Full star iconFull star iconFull star iconFull star iconHalf star icon4.5
(33 Ratings)
5 star75.8%
4 star12.1%
3 star0%
2 star6.1%
1 star6.1%
Filter icon Filter
Top Reviews

Filter reviews by




N/AFeb 28, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
really accurate, without code sampling problems
Feefo Verified reviewFeefo
Nikhil ThotaSep 29, 2023
Full star iconFull star iconFull star iconFull star iconFull star icon5
Love it! Tyler's a great author, and breaks down concepts of Streamlit very well 🔥
Amazon Verified reviewAmazon
PaulineOct 01, 2023
Full star iconFull star iconFull star iconFull star iconFull star icon5
Great book for python beginner to learn how to create data apps. Step by step detailed examples/codes to follow along. Easy to understand. Python packages/functions explained or described.
Amazon Verified reviewAmazon
Amazon CustomerOct 21, 2023
Full star iconFull star iconFull star iconFull star iconFull star icon5
Excellent reference material.Very useful for developing ML models.
Amazon Verified reviewAmazon
David GJan 10, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
Bought it for my cousins, one is a data engineer and one is swe and both love it. Highly recommend it
Amazon Verified reviewAmazon
  • Arrow left icon Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • ...
  • Arrow right icon Next

People who bought this also bought

Left arrow icon
Causal Inference and Discovery in Python
Causal Inference and Discovery in Python
Read more
May 2023466 pages
Full star icon4.5 (50)
eBook
eBook
€28.99€32.99
€40.99
Generative AI with LangChain
Generative AI with LangChain
Read more
Dec 2023376 pages
Full star icon4 (35)
eBook
eBook
€42.99€47.99
€59.99
Modern Generative AI with ChatGPT and OpenAI Models
Modern Generative AI with ChatGPT and OpenAI Models
Read more
May 2023286 pages
Full star icon4.2 (35)
eBook
eBook
€26.98€29.99
€37.99
Deep Learning with TensorFlow and Keras – 3rd edition
Deep Learning with TensorFlow and Keras – 3rd edition
Read more
Oct 2022698 pages
Full star icon4.6 (45)
eBook
eBook
€26.98€29.99
€37.99
Machine Learning Engineering  with Python
Machine Learning Engineering with Python
Read more
Aug 2023462 pages
Full star icon4.6 (38)
eBook
eBook
€26.98€29.99
€37.99
Right arrow icon

About the author

Profile icon Tyler Richards
Tyler Richards
LinkedIn iconGithub icon
Tyler Richards is a senior data scientist at Snowflake, working on a variety of Streamlit-related projects. Before this, he worked on integrity as a data scientist for Meta and non-profits like Protect Democracy. While at Facebook, he launched the first version of this book and subsequently started working at Streamlit, which was acquired by Snowflake early in 2022.
Read more
See other products by Tyler Richards
Getfree access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook?Chevron down iconChevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website?Chevron down iconChevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook?Chevron down iconChevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support?Chevron down iconChevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks?Chevron down iconChevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook?Chevron down iconChevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.


[8]ページ先頭

©2009-2025 Movatter.jp