Skip to content
View choeh's full-sized avatar
  • Germany

Block or report choeh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. AutoScraper with Request Randomization AutoScraper with Request Randomization
    1
    #!/usr/bin/env python
    2
    # -*- coding: utf-8 -*-
    3
    """
    4
    Use [AutoScraper](https://github.com/alirezamika/autoscraper) in combination with scraping randomization, provided by [Fake-Useragent](https://pypi.org/project/fake-useragent/) and [Free-Proxy](https://pypi.org/project/free-proxy/)
    5
    """
  2. Helper for local web scraper develop... Helper for local web scraper development
    1
    #!/usr/bin/env python
    2
    # -*- coding: utf-8 -*-
    3
    """
    4
    Helper for web scraper development to cleanup irrelevant html content from local copy of target webpage
    5
    """
  3. Webpage Contact Details Encryption (... Webpage Contact Details Encryption (with **HTML**, **Vanilla JavaScript** and/or **jQuery**)
    1
    # Webpage Contact Details Encryption
    2
    ## Encrypted `tel:` / `mailto:` action for contact to work *on click*:
    3
    - **HTML** implementation:
    4
      ```html
    5
      <a class="cryptedphone" href="#" data-area="0123" data-line="456 789" target="_blank" title="Contact by phone">Phone</a>
  4. Find key(s) or value(s) in given jso... Find key(s) or value(s) in given json-like data dictionary by given target string
    1
    #!/usr/bin/env python
    2
    # -*- coding: utf-8 -*-
    3
    """
    4
    Snippet for searching target string in key(s) or value(s) of nested dictionary
    5
    """