Skip to main content

pd supercharges your development workflows

Project description

pd (Product Development and Deployment)

pd logo

pd is a command-line tool that helps you with various development and deployment tasks.

Feature Description
1 Project initialization (init) Quickly initialize new development projects (e.g. FastAPI, Electron etc)
2 Content downloading (down) Download content from the internet (YouTube).
3 File conversion (conv) Convert files into other formats (Image, Audio, Video).
4 EC2 instance management (ec2) Manage EC2 instances (launch, terminate).
5 Image editing (edit) Edit images (round, favicon, logos etc).
6 Environment setup and configuration (env) Setup and configure development environment (zsh, vim, git, etc).
7 Nginx configuration management (nginx) Manage Nginx configuration files (proxy, static resources).

See COMMANDS for more details.

Installation

pip install zf-pd

This installs a pd command in your system (even though the package name is zf-pd).

Like other shell tools, pd stores its config in ~/.pdconfig.json.

See CONFIG for more details.

Usage

Initializing a new Project

$ pd init fastapi --name /path/to/fastapi-test

This will create a new FastAPI project called fastapi-test inside /path/to directory.

Downloading a YouTube video

pd down youtube -l https://www.youtube.com/watch?v=... -f mp4 # or mp3, text etc

This will output a file called {TITLE}.txt at the current directory.

Generating logo varations

$ pd edit logos -p /path/to/logo.png -t iOS - "20%"

# Outputs
# /path/to/logo40.png
# /path/to/logo60.png
# ...

This will generate all required iOS logos with 20% border radius at /path/to directory.

Converting MP4 to MP3

$ pd conv video -p /path/to/file.mp4 -f mp3

This will output a file called file.mp3 at /path/to directory.

Launching an EC2 instance

You can launch an EC2 instance using a launch template as below:

$ pd ec2 launch -n ec2-test -c 1

This will launch 1 EC2 instance called ec2-test using the launch template specified in ~/. pdconfig.json.

Check out the CONFIG.md for more details.

Generating an Nginx Config

You can generate a Nginx configuration file using the generate command.

$ pd nginx generate -h localhost -p 80 -d example.com -s /path/to/static
server {
    server_name example.com;

    root /path/to/static;
    client_max_body_size 50M;

    location / {
        proxy_pass http://localhost:80;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }

    location /path/to/static {
        alias /path/to/static;

        # Add CORS 'Access-Control-Allow-Origin' header for fonts
        location ~* \.(ico|png|css|ttf)$ {
            add_header Access-Control-Allow-Origin *;
        }
    }
}

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zf-pd-0.1.5.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

zf_pd-0.1.5-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file zf-pd-0.1.5.tar.gz.

File metadata

  • Download URL: zf-pd-0.1.5.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for zf-pd-0.1.5.tar.gz
Algorithm Hash digest
SHA256 20818c04c6ea9be8941dda55f8a5bd20e4a09e51adbe31efad3770047c9d0354
MD5 b87fbf85f0849398a34b40c080ed5559
BLAKE2b-256 2c95fdb6f447924bae4c1740370631df9138e8b46f92d4f087092d4c17820cad

See more details on using hashes here.

File details

Details for the file zf_pd-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: zf_pd-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for zf_pd-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 7b2fcc14ec04481a08f855f204ae667e129d18da76c601f060688a86a4123501
MD5 e88014f19b527656b2dc5052dcf7900b
BLAKE2b-256 f649a6e092768262160332893f8dd90f2bfe4bd83ca120336371f1ae77be228e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page