Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyism committed Dec 19, 2017
1 parent b93b6ea commit 5faf762
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ person = Person("https://www.linkedin.com/in/andre-iguodala-65b48ab5", driver =
When this is **True**, the scraping happens automatically. To scrape afterwards, that can be run by the `scrape()` function from the `Person` object.

## Versions
**1.2.x**
* Allows scraping later

**1.1.x**
* Addes additional API where user can use their own webdriver

Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ afterwards, that can be run by the ``scrape()`` function from the
Versions
--------

**1.2.x** \* Allows scraping later

**1.1.x** \* Addes additional API where user can use their own webdriver

**1.0.x** \* first publish and fixes
2 changes: 1 addition & 1 deletion linkedin_user_scraper/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, linkedin_url = None, experiences = [], educations = [], drive
except:
driver = webdriver.Chrome()

driver.get("http://linkedin.com")
driver.get(linkedin_url)
self.driver = driver

if scrape:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
setup(
name = 'linkedin_user_scraper',
packages = ['linkedin_user_scraper'], # this must be the same as the name above
version = '1.1.0',
version = '1.2.0',
description = 'Scrapes user data from Linkedin',
author = 'Joey Sham',
author_email = '[email protected]',
url = 'https://github.com/joeyism/linkedin_user_scraper', # use the URL to the github repo
download_url = 'https://github.com/joeyism/linkedin_user_scraper/dist/1.1.0.tar.gz',
download_url = 'https://github.com/joeyism/linkedin_user_scraper/dist/1.2.0.tar.gz',
keywords = ['linkedin', 'scraping', 'scraper'],
classifiers = [],
install_requires=['lxml', 'request', 'selenium'],
Expand Down

0 comments on commit 5faf762

Please sign in to comment.