- How To Develop Your First Web Crawler Using Python Scrapy
- Scrapy tutorial
- Downloading Files from URLs in Python
- How to Download Files in Python - article on tutsplus.
- Use Scrapy to Extract Data From HTML Tags
- How to Scrape the Web using Python with ScraPy Spiders
- Beautiful soup documentation
- Современная Веб-Автоматизация при Помощи Python и Selenium
- [Selenium
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| * Translit file names to simple chars, | |
| * this prevent accents and special chars at file names. | |
| ***********************************************************************/ | |
| function my_sanitize_file_name($filename) { | |
| return remove_accents($filename); | |
| } | |
| add_filter('sanitize_file_name', 'my_sanitize_file_name'); | |
| /* | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """" | |
| :link: https://github.com/PyMySQL/PyMySQL | |
| """"" | |
| import pymysql | |
| import pymysql.cursors | |
| connection = pymysql.connect(host="localhost", | |
| user="root", | |
| password="1234", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- Get Max ID from table | |
| SELECT MAX(id) FROM table; | |
| -- Get Next ID from table | |
| SELECT nextval('table_id_seq'); | |
| -- Set Next ID Value to MAX ID | |
| SELECT setval('table_id_seq', (SELECT MAX(id) FROM table)); | 
OlderNewer