Skip to content

Commit 9bcc645

Browse files
authored
Merge pull request #5 from Evil-Space-Wizard/master
Specify Character Encoding
2 parents 1730694 + ab3b136 commit 9bcc645

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

scrape_amazon/util/scrape.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import math
22
import re
3-
43
import pandas as pd
54
from bs4 import BeautifulSoup
65
from p_tqdm import p_map

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scrape_amazon
3-
version = 0.1.6
3+
version = 0.1.7
44
description = Scrape Amazon Reviews smoothly.
55
license = MIT
66
author = Parth Maniar
@@ -32,4 +32,4 @@ warn_redundant_casts = True
3232
warn_unused_ignores = True
3333
warn_return_any = True
3434
warn_unreachable = True
35-
pretty = True
35+
pretty = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("README.md") as readme_file:
3+
with open("README.md", encoding="utf8") as readme_file:
44
README = readme_file.read()
55

66
setuptools.setup(

0 commit comments

Comments
 (0)