Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarartur/liquidcss
Python package for altering CSS selector names across CSS, HTML and JavaScript files.
https://github.com/sarartur/liquidcss
css html python python-library scraping scraping-websites webdev webdevelopment
Last synced: 4 days ago
JSON representation
Python package for altering CSS selector names across CSS, HTML and JavaScript files.
- Host: GitHub
- URL: https://github.com/sarartur/liquidcss
- Owner: sarartur
- License: mit
- Created: 2020-12-08T03:47:45.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-27T00:00:45.000Z (almost 4 years ago)
- Last Synced: 2024-09-27T07:34:42.525Z (about 2 months ago)
- Topics: css, html, python, python-library, scraping, scraping-websites, webdev, webdevelopment
- Language: Python
- Homepage:
- Size: 102 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.TXT
Awesome Lists containing this project
README
# LiquidCSS
Command line tool for hashing selector names across CSS, HTML and JavaScript files.
### Description & Implementation
The tool makes most scraping robots obsolete by dynamically hashing all selectors across the entire infrastructure of a web application. Most scraping tools
achieve their objective by hooking onto certain HTML selector names in the response document. LiquidCSS offers up a way to counter act this approach by changing the selector names without breaking any of the functionality or appearance of the web application.Install the package with: ```pip install liquidcss``` \
https://pypi.org/project/liquidcss/
### Usage
To begin using the tool first create a WorkSpace: ```liquid init``` \
Register files to the WorkSpace either individually or by specifying a ```txt``` document containing a list of paths: \
```liquid grab /path/to/file``` or ```liquid grab -r paths.txt```
Once files are registered, view their status inside the WorkSpace:```liquid status -a```
```
[ID: 0]
name: sample001.css
path: /example/original/sample001.css
type: css
hash: 603706f3aa0a9b7779fca2acd29d4b8e5a68796f846f955c6ac6e72b6f13081a
staged: True
deployed: False```
Hash the selector names across all registered files: ```liquid stage -a```**The selector names will be hashed only if they are present in the CSS files registered in the workspace.**
The files are now ready to be deployed. The deploy command will swap the files at the registered paths with the hashed files and create
a backup of the original files:```liquid deploy -a```Reverse the deployment of the files with hashed selectors and replace them with files stored in backup: ```liquid deploy -a -r```
**JavaScript files registered with the WorkSpace can only contain ```const``` or ```var``` key words and only the selector names as strings include the ```.``` or the ```#```.** See the examples in the example folder.
More extensive documentation and further features are in development.