scrapes stock symbols from wallstreetbets on reddit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
203 B

from marshmallow import Schema, fields
from datetime import date
class Symbol:
symbol = fields.Str()
name = fields.Str()
count = fields.Integer()
day = fields.Date()
class DD:
pass