Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
REMitchell
GitHub Repository: REMitchell/python-crawling
Path: blob/master/3-Advanced-Crawlers/topic.py
164 views
1
class Topic:
2
'Common base class for all topics'
3
4
5
def __init__(self, id, name):
6
self.id = id
7
self.name = name
8
9
10