Дофаномика

Дофаномика: как рынок обманывает наш мозг и как перестать проверять смартфон 80 раз в день Нейромаркетинг — прикладная нейронаучная дисциплина, использующая открытия, связанные с работой мозга, на нужды рынка. Расцвет науки построения манипулятивной среды только начинается вместе с развитием технологий и big data. Массовый интерес к идее нейроархитектуры в непрофессиональном сообществе возник совсем недавно. Бывший сотрудник Facebook, а ныне венчурный капиталист и миллиардер Чамат Палихапития в декабре на встрече ... Read more

Python Loops

For Loop While Loop 'break' statement in the loop 'continue' statement in the loop For Loop with 'else' clause We can use 'else' for loops. When the loop condition of 'for' or 'while' statement fails then code part in 'else' is executed. If break statement is executed inside for loop then the 'else' part is ... Read more

Selenium

Click the link with the Selenium webdriver and Python Filling out and submitting forms with the Selenium webdriver and Python Run this script in command line to install Selenium: Selenium for Python documentation

Beautiful Soup

Run this code into command line to install Beautiful Soap: pip install beautifulsoup4 Run this code into command line to install lxml html-parser: pip install lxml Beautiful Soup documentation

Requests

Download file from internet and save it Installing Requests module: Python Requests module