Allows you to create browser automations with natural language
Project description
parsagon
Parsagon allows you to create browser automations with natural language. You can create automations that fill out forms, scrape web pages, and much more, all without writing code. Here's a brief overview of how to get started:
Requirements
To use Parsagon, you must have an up-to-date version of Google Chrome and Python >= 3.8
Installation
To get started, install the Parsagon python package:
pip install parsagon
Then run
parsagon setup
and copy-paste your API key when prompted.
You can view your API key by logging in and going to https://parsagon.io/settings
Usage
From command line:
# Create a program
parsagon create
# Run a program
parsagon run 'My program'
# List your programs
parsagon detail
# Delete a program
parsagon delete 'My program'
From Python:
import parsagon
# Create a program
parsagon.create('Go to https://www.google.com/. Type "the meaning of life" into the search bar and hit enter. Scroll down and click the "More results" button 3 times. Scrape data in the format [{"search result title": "str", "link": "link"}].')
# Run a program
parsagon.run("My program")
# Run a program multiple times
parsagon.batch_runs("My batch name", "My program", runs=[{"variable_name": "value1"}, {"variable_name": "value2"}, ...])
# List your programs
parsagon.detail()
# Delete a program
parsagon.delete("My program")
See the docs for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for parsagon-0.14.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71f1d17f823da88fb008759d2e925256b06f473ab5cdb7b482ca77ed5c7ec245 |
|
MD5 | f368f1ef73ae9f1afe1582eab426acd8 |
|
BLAKE2b-256 | b21c97b3534ccb85b998e32f991946851fce0e179ed4393583deae7f07f2642d |