- Additional Documentation
- What does sws do?
- Features & Roadmap
- Why should I use sws?
- Who is sws for?
- Quick-start
- Development-Contribution guide
A command line interface, and set of scripts for common web tasks.
run pip install sws
or sudo pip3 install sws
.
- Clone the github repo (https://github.com/Descent098/sws)
- cd into the 'sws' root directory (where setup.py is) and run
pip install .
orsudo pip3 install .
API Documentation can be found at https://kieranwood.ca/sws/
User Documentation for the cli can be found at https://sws.readthedocs.io
sws
is both a cli, and an API with the goal of making common web development tasks simple.
Specifically the API is designed to:
- Be a cross-platform utility API
- Give sensible high-level functions for common tasks
- Provide useful constants such as a list of dns record types
- Provide a set of utility classes for common tasks (such as downloads)
The CLI is designed to:
- Provide a cross-platform set of tools
- Provide a toolbox for ease of use tasks so you don't need to know dozens of commands
- Make doing simple tasks simpler
Get information about domain names including:
- Who is the registrar
- When the domain expires
Get information about the trace of http redirects
Get deails about the ssl cert of a hostname such as:
- When the cert will expire
- The issuer of the cert
- A full dict of the details of the cert
Allows for the download of videos as well as geting metadata
Prints a table of the DNS records for a given domain
A full roadmap for each project version can be found here: https://github.com/Descent098/sws/projects
The best marketing pitch that I can give you is that it's easy to use, free, and open source. The project really is here so that people don't have to keep writing the same implementations of basic tasks, and can instead use a tested package that contains a ton of functionality. Additionally if you don't want to use all of sws's features, because it is MIT liscenced you can feel free to vendor functions within your own project.
Really it can be used by anyone, but here are the most typial use cases:
- Web developers; tools provided in sws can help with debugging and validating web servers
- Devops Specialists & testers; can use sws api to automate validation that servers are running how they should be
- People learning webdev; Sometimes getting access to tooling while learning webdev can be difficult, this can be a one-stop shop for lots of functionality
- Scripters; people who are looking to use sws functionality in their own projects
See Contribution guide for details about helping with development.