Profilo di Shadow

Nome Shadow
Indirizzo email n/a
Messaggi3
  • Python Scrapy Tutorial
    Forum >> Programmazione Python >> Web e Reti
    Il Web Scraping è l'atto di estrarre dati da Internet tramite l'uso di un bot o "spider".

    Questa è una serie di tutorial sulla libreria di web scraping di Python, Scrapy. Scopri funzionalità avanzate come AutoThrottle , Rotating Proxies , User Agent , Link Following , Data Extraction e Request Delays .

    Impara subito Python Scrapy!


    Un'alternativa più semplice: BeautifulSoup




    --- Ultima modifica di Shadow in data 2020-10-21 16:33:41 ---
  • Python GUI Tutorial
    Forum >> Programmazione Python >> GUI
    Here are some new and updated GUI tutorials for both PyQt5 and Tkinter. Sample code and images are also included. I highly recommend it to all Python beginners.


    Tkinter Tutorial
    PyQt5 Tutorial


    --- Ultima modifica di Shadow in data 2020-07-17 07:11:41 ---
  • Pygame Sfondo scorrevole.
    Forum >> Programmazione Python >> Videogames
    Pygame Tutorial on how to create sliding backgrounds. Useful for new pygame users.


    class Background():
    
          def __init__(self):
    
                self.bgimage = pygame.image.load('AnimatedStreet.png')
    
                self.rectBGimg = self.bgimage.get_rect()
    
     
    
                self.bgY1 = 0
    
                self.bgX1 = 0
    
     
    
                self.bgY2 = self.rectBGimg.height
    
                self.bgX2 = 0
    
     
    
                self.moving_speed = 5
    
             
    
          def update(self):
    
            self.bgY1 -= self.moving_speed
    
            self.bgY2 -= self.moving_speed
    
            if self.bgY1 <= -self.rectBGimg.height:
    
                self.bgY1 = self.rectBGimg.height
    
            if self.bgY2 <= -self.rectBGimg.height:
    
                self.bgY2 = self.rectBGimg.height
    
                 
    
          def render(self):
    
             DISPLAYSURF.blit(self.bgimage, (self.bgX1, self.bgY1))
    
             DISPLAYSURF.blit(self.bgimage, (self.bgX2, self.bgY2))


    fonte - CodersLegacy








    --- Ultima modifica di Shadow in data 2020-07-14 10:02:35 ---

    --- Ultima modifica di Shadow in data 2020-07-14 10:03:09 ---