Cargando…

Web development with Django cookbook : over 90 practical recipes to help you create scalable websites using the Django 1.8 framework /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Bendoraitis, Aidas (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2016.
Edición:Second edition.
Colección:Quick answers to common problems.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn936630063
003 OCoLC
005 20231017213018.0
006 m o d
007 cr |n|||||||||
008 160205s2016 enk o 001 0 eng d
040 |a IDEBK  |b eng  |e pn  |c IDEBK  |d N$T  |d UMI  |d TEFOD  |d OCLCF  |d TEFOD  |d VT2  |d DEBSZ  |d OCLCQ  |d DEBBG  |d OCLCQ  |d CEF  |d NLE  |d UKMGB  |d MQY  |d UAB  |d G3B  |d IGB  |d UKAHL  |d RDF  |d OCLCO  |d OCLCQ  |d QGK 
015 |a GBB6G3484  |2 bnb 
016 7 |a 018010586  |2 Uk 
019 |a 939394726  |a 1259057025 
020 |a 1785881329  |q (electronic bk.) 
020 |a 9781785881329  |q (electronic bk.) 
020 |z 9781785886775 
020 |z 1785886770 
029 1 |a DEBSZ  |b 473875179 
029 1 |a DEBBG  |b BV043968891 
029 1 |a DEBSZ  |b 485794039 
029 1 |a GBVCP  |b 882752944 
029 1 |a AU@  |b 000058967205 
029 1 |a UKMGB  |b 018010586 
029 1 |a AU@  |b 000057110876 
035 |a (OCoLC)936630063  |z (OCoLC)939394726  |z (OCoLC)1259057025 
037 |a 892673  |b MIL 
050 4 |a TK5105.888 
072 7 |a COM  |x 060130  |2 bisacsh 
082 0 4 |a 005.72  |2 23 
049 |a UAMI 
100 1 |a Bendoraitis, Aidas,  |e author. 
245 1 0 |a Web development with Django cookbook :  |b over 90 practical recipes to help you create scalable websites using the Django 1.8 framework /  |c Aidas Bendoraitis. 
250 |a Second edition. 
264 1 |a Birmingham :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (384). 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Quick answers to common problems 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed March 17, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Over 70 practical recipes to help you create scalable websites using the Django 1.8 frameworkAbout This Book This is the latest book on the market that will help you take advantage of the new features added to Django 1.8 This book consists of recipes of varying complexities to help you create multilingual, responsive, and scalable websites with Django This updated edition teaches you major Django functions and will help you improve your skills by developing models, forms, views, and templatesWho This Book Is ForThis book is for intermediate-level and professional Django users who need to build projects that are multilingual, functional on devices of different screen sizes, and that scale over a period of time. If you have created websites with Django but you want to sharpen your knowledge and learn some good approaches to different aspects of web development, you should definitely read this book. What You Will Learn Get started with the basic configuration necessary to start any Django project Build a database structure out of reusable model mixins Manage forms and views and get to know some useful patterns that are used to create them Create handy template filters and tags that you can reuse in every project Integrate your own functionality into the Django CMS Manage hierarchical structures with MPTT Import data from local sources and external web services as well as exporting your data to third parties Implement a multilingual search with Haystack Test and deploy your project efficientlyIn DetailDjango is a web framework that was designed to strike a balance between rapid web development and high performance. It has the capacity to handle applications with high levels of user traffic and interaction, and can integrate with massive databases on the backend, constantly collecting and processing data in real time. Through this book, you'll discover that collecting data from different sources and providing it to others in different formats isn't as difficult as you thought. It follows a task-based approach to guide you through all the web development processes using the Django framework. We'll start by setting up the virtual environment for a Django project and configuring it. Then you'll learn to write reusable pieces of code for your models and find out how to manage database schema changes using South migrations. After that, we'll take you through working with forms and views to enter and list data. With practical examples on using templates and JavaScript together, you will discover how to create the best user experience. In the final chapters, you'll be introduced to some programming and debugging tricks and finally, you will be shown how to test and deploy the project to a remote dedicated server. By the end of this book, you will have a good understanding of the new features added to Django 1.8 and be an expert at web development processes. Style and approachEvery chapter consists of practical examples and a mix of basic and advanced recipes that will guide you through the entire web development process, starting from project configuration and taking you right through to deployment. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with Django 1.8; Chapter 2: Database Structure; Chapter 3: Forms and Views; Chapter 4: Templates and JavaScript; Chapter 5: Custom Template Filters and Tags; Chapter 6: Model Administration; Chapter 7: Django CMS; Chapter 8: Hierarchical Structures; Chapter 9: Data Import and Export; Chapter 10: Bells and Whistles; Chapter 11: Testing and Deployment; Index; Introduction; Working with a virtual environment; Creating a project file structure 
505 8 |a Handling project dependencies with pipMaking your code compatible with both Python 2.7 and Python 3; Including external dependencies in your project; Configuring settings for development, testing, staging, and production ; environments; Defining relative paths in the settings; Creating and including local settings; Setting up STATIC_URL dynamically for Subversion users; Setting up STATIC_URL dynamically for Git users; Setting UTF-8 as the default encoding for MySQL configuration; Setting the Subversion ignore property; Creating the Git ignore file; Deleting Python-compiled files 
505 8 |a Respecting the import order in Python filesCreating app configuration; Defining overwritable app settings; Introduction; Using model mixins; Creating a model mixin with URL-related methods; Creating a model mixin to handle creation and modification dates; Creating a model mixin to take care of meta tags; Creating a model mixin to handle generic relations; Handling multilingual fields; Using migrations; Switching from South migrations to Django migrations; Changing a foreign key to the many-to-many field; Introduction; Passing HttpRequest to the form; Utilizing the save method of the form 
505 8 |a Uploading imagesCreating a form layout with django-crispy-forms; Downloading authorized files; Filtering object lists; Managing paginated lists; Composing class-based views; Generating PDF documents; Implementing a multilingual search with Haystack; Introduction; Arranging the base.html template; Including JavaScript settings; Using HTML5 data attributes; Opening object details in a modal dialog; Implementing a continuous scroll; Implementing the Like widget; Uploading images by Ajax; Introduction; Following conventions for your own template filters and tags 
505 8 |a Creating a template filter to show how many days have passed since a post was published; Creating a template filter to extract the first media object; Creating a template filter to humanize URLs; Creating a template tag to include a template if it exists; Creating a template tag to load a QuerySet in a template; Creating a template tag to parse content as a template; Creating a template tag to modify request query parameters; Introduction; Customizing columns on the change list page; Creating admin actions; Developing change list filters; Customizing default admin settings 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Django (Electronic resource) 
630 0 7 |a Django (Electronic resource)  |2 fast  |0 (OCoLC)fst01780807 
650 0 |a Web site development. 
650 6 |a Sites Web  |x Développement. 
650 7 |a COMPUTERS  |x Web  |x Design.  |2 bisacsh 
650 7 |a Web site development.  |2 fast  |0 (OCoLC)fst01173243 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe 
830 0 |a Quick answers to common problems. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785886775/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH30053563 
938 |a EBSCOhost  |b EBSC  |n 1163377 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33698659 
994 |a 92  |b IZTAP