Metadata-Version: 2.1
Name: alime
Version: 0.1.0
Summary: Animated anti-bot email obfuscation for your website
Home-page: https://github.com/cduck/alime
Author: Casey Duckering
License: UNKNOWN
Download-URL: https://github.com/cduck/alime/archive/0.1.0.tar.gz
Keywords: html,css,email,scrape
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: IPython
Classifier: Framework :: Jupyter
Description-Content-Type: text/markdown

<img alt="Demo animation" src="https://raw.githubusercontent.com/cduck/alime/master/docs/demo.gif?token=AAS4QHQEUYBAI4VLH6R75EC667FW2" height="98">

# Alime: Animated anti-bot email obfuscation for your website

- Stops email scraping bots that don't understand CSS transforms and page layout
- Works without JavaScript (JavaScript is only used to make a clickable mailto: link)

[Demo page](https://cduck.github.io/alime/demo.html)


## Usage

- Install the tool from PyPI:
    ```bash
    python3 -m pip install alime
    ```
- Run alime with your email:
    ```bash
    python3 -m alime 'my.email@example.com'
    ```
    alime-example.html, alime.css, and alime.js are created in the current directory.
- Copy alime.css and alime.js (optional for mailto: hyperlink support) to your website.
- Copy the marked contents of alime-example.html into your webpage HTML source.

More options are available by using alime from Python code:
```python
import alime
help(alime.Alime)

gen = alime.Alime('my.email@example.com')
gen.generated_html, gen.generated_css, gen.generated_js
gen.save()
```


