Socket
Book a DemoInstallSign in
Socket

cli-pylinx

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli-pylinx

A lightweight CLI for uploading and managing your files on a linx-server instance.

1.3.1
pipPyPI
Maintainers
1

pylinx a linx-server CLI

Python 3.8+ Poetry

A lightweight Python CLI for uploading and managing your files on a linx-server instance.

Usage

Help command:

Usage: pylinx [OPTIONS] COMMAND [ARGS]...

Options:
  --working-dir TEXT  Manually sets the working directory. Any relative
                      argument paths use this as the base.

  -v, --verbose       Print more information
  --config TEXT       Set the custom configuration file
  --version
  -y, --yes           Skip interactive questions, if possible
  --help              Show this message and exit.

Commands:
  configure     Manage your configuration (interactive)
  delete (del)  Delete a file with the provided delete key
  info (i)      Show information about a file (expiration, size, ...)
  upload (u)    Upload a file

Upload command help:

Usage: pylinx upload [OPTIONS] FILE_PATH

  Upload a file

Options:
  -r, --randomize         whether to randomize the file name  [default: False]
  -e, --expiry-days TEXT  for how many days should the file be retained
                          (maximum is set by the server!)

  -d, --delete-key TEXT   what the delete key should be [default: random]
  -a, --access-key TEXT   what the access key (file password) should be
  -f, --filename TEXT     custom filename [default: same as file]
  --help                  Show this message and exit.

See pylinx [command] --help for more detailed help for each available command.

Installation

1. Prerequisites

Poetry is the dependency manager of choice for this project, so you need to have it installed (or if you really don't want to use it, see b) Pip install). Additionally, this project is compatible with Python 3.8+ (Poetry will insist on it).

2. Installation

The simplest way to install pylinx is to use the provided install script. It will create a virtualenv in the current directory using Poetry to avoid polluting your global package list.

Bash with curl:

curl -sSL https://raw.githubusercontent.com/DefaultSimon/pylinx/master/scripts/install_pylinx.py --output install_pylinx.py && python install_pylinx.py

On Windows with Powershell

(Invoke-WebRequest -Uri https://raw.githubusercontent.com/DefaultSimon/pylinx/master/scripts/install_pylinx.py -UseBasicParsing -OutFile install_pylinx.py); python install_pylinx.py

You will still be asked to add the resulting path to your PATH variable manually. Uninstalling is as simple as updating PATH and removing the directory that was made.

b) Pip install

NOTE: This package is publised on PyPi as cli-pylinx, not pylinx!

If other methods are unavailable for you or fail, you can install pylinx using either

python -m pip install cli-pylinx (latest release) or python -m pip install git+https://github.com/DefaultSimon/pylinx.git (up-to-date with the repository)

Note that this will install packages to your global Python install, so the first method with Poetry and virtualenv might be preffered.

A note for Windows users: using this type of install, you will not be able to add pylinx to your right-click "context" menu using the provided scripts.

c) Manual install (advanced)

If you do not want to run the install script, you can also do the installation manually.

  • clone this repository to a location of your choosing
  • execute poetry install in the root directory
  • copy the pylinx binary and pylinx-script.py script to somewhere in your PATH (or, as the installer does it - make a local bin directory, copy the two files there and add them to your PATH variable)

3. Configuration

Pylinx uses a single TOML configuration file named linxConfig.toml. A blank configuration file is available under config/linxConfig.EXAMPLE.toml.

Pylinx offers three ways of specifying your configuration file. First, if --config [filepath] is passed, it ignores any other configuration files. Otherwise, it looks at the current directory, then ~/.config/pylinx/.

If no configuration file can be found in any of the above places, pylinx will refuse to run.

While you can create and edit the configuration manually, pylinx also provides a handy command for doing this a bit more interactively - pylinx configure.

4. Extras

4.1. Right-click context menu on Windows

If you are a Windows user, you might benefit from a quicker way of uploading files. The script in scripts/win-add_to_context_menu.py will add pylinx to the right-click (context) menu. Simply run python win-add_to_context_menu.py and follow the instructions.

Windows Integration Demo

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.