Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sp21-cs242-assignment2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zshan2
sp21-cs242-assignment2
Merge requests
!1
<assignment-2.1>
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
<assignment-2.1>
assignment-2.1
into
master
Overview
0
Commits
9
Pipelines
0
Changes
4
Merged
zshan2
requested to merge
assignment-2.1
into
master
4 years ago
Overview
0
Commits
9
Pipelines
0
Changes
4
Expand
2.1
0
0
Merge request reports
Viewing commit
e51da8b9
Prev
Next
Show latest version
4 files
+
73
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
e51da8b9
assignment2.0 ver1.0: basic classes added
· e51da8b9
zshan2
authored
4 years ago
Crawler/AuthorPack.py
0 → 100644
+
13
−
0
Options
class
AuthorPackage
:
def
__init__
(
self
,
name
,
url
,
id
,
rating
,
rating_count
,
review_count
,
image_url
,
related_authors
,
author_books
):
self
.
name
=
name
self
.
url
=
url
self
.
id
=
id
self
.
rating
=
rating
self
.
rating_count
=
rating_count
self
.
review_count
=
review_count
self
.
image_url
=
image_url
self
.
related_authors
=
related_authors
self
.
author_books
=
author_books
Loading