Giter VIP home page Giter VIP logo

place-scraper's Introduction

place-scraper

PyPI version

A websockets scraper for /r/place on reddit

This project will store:

  • Every pixel update recieved
  • Every activity (player count) update recieved
  • The entire 1000x1000 image after every 20,000 pixel changes

Each of the above is placed in its own indexed table in a SQLite file, along with the timestamp of its arrival. Note that due to reddit's issues with server overloading, you will likely miss some pixel updates. Reddit has also been turning off the activity updates at times, so don't worry if you can't see any of those coming in.

Installation

You can download this package on PyPI for Python 3 with pip:

$ pip3 install placescraper

Requirements

  • The requests and websocket-client packages from PyPI
  • Python 3.X

Running the scraper

You can either download the file at placescraper/base.py and just run it from the terminal:

$ python3 base.py # This will create a SQLite file called place.sqlite

or you can use the scraper as a class like this:

from placescraper import PlaceScraper

scraper = PlaceScraper()
scraper.scrape_websocket_forever('place.sqlite')

If you don't want to utilize PlaceScraper's database functionality, you can have it just feed you the frames from the websocket through a generator

scraper = PlaceScraper()
for frame in scraper.read_websocket_forever():
    # Do something with the frame

place-scraper's People

Contributors

rspeed avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.