This commit is contained in:
jarbasal 2018-05-02 16:06:24 +01:00
parent 6bc3b07670
commit 5572b663d3
2 changed files with 3 additions and 1 deletions

View File

@ -89,9 +89,11 @@ class Erowid(object):
soup = BeautifulSoup(response, "lxml")
name = soup.find('div', {'class': 'title'}).getText().strip()
author = soup.find('div', {'class': 'author'}).getText().strip()
drug = soup.find('div', {'class': 'substance'}).getText().strip().lower().replace("/", ", ")
experience_data = soup.find('table', {'class': 'footdata'}).getText().strip().lower().split("\n")
data["name"] = name
data["author"] = author
data["substance"] = drug
data["experience"] = experience
data["year"] = experience_data[0].split("expid:")[0].replace("exp year: ", "").strip()

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='PySychonaut',
version='0.4.1',
version='0.4.2',
packages=['pysychonaut'],
url='https://github.com/JarbasAl/PySychonaut',
license='MIT',