Skip to main content

A package for read and writing auth

Project description

Build Status Coverage Status

Basic

A package for creating and reading config files for basic authentication.

Purpose

A lot of APIs use basic authentication, this is where you concatenate username and password separated by a : and encode them with base64 then prefix with Basic. So username:password encoded with base64 becomes Basic dXNlcm5hbWU6cGFzc3dvcmQ=. This package manages the encoding and storing of this configuration so it can be easily retrieve and used.

Usage

Getting started is easy, first install the package using pip install basic

Next you can create your auth dict

form basic_auth import Auth
CONFIG = Auth().basic_config("url", Auth().encode("username", "password"))

Write it to file

Auth().create_config("basic_config.json", CONFIG)

To read it in your own scripts

CONFIG = Auth().read_config("basic_config.json")

Have a read of simple.py

There's some examples in the Examples directory general.py supports both interactive input and arguments.

python3 Examples/general.py -url example.com -username user1 -password hunter2

and

python3 Examples/general.py

WSO.py shows how to use it and insert your own custom fields too.

Details

This will create a folder called config and store the config in a json file with the following structure

{
    "url": "url",
    "authorization": "Basic dXNlcm5hbWU6cGFzc3dvcmQ="
}

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

basic_auth-0.0.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

basic_auth-0.0.2-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file basic_auth-0.0.2.tar.gz.

File metadata

  • Download URL: basic_auth-0.0.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.8.0

File hashes

Hashes for basic_auth-0.0.2.tar.gz
Algorithm Hash digest
SHA256 212ddd50b242bd7b19bbcd4a811cfc4e5d9137dcf4d4e8d054b3b152cda17442
MD5 510ff892ba205da4ab4f69c16193fadc
BLAKE2b-256 ffa0c56116cf6fe3ccc617b5cc96e4a10ca94bc0f5393b300433839a3979a977

See more details on using hashes here.

File details

Details for the file basic_auth-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: basic_auth-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.8.0

File hashes

Hashes for basic_auth-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1d29659242184c13931eece26a165b152255e8dc8dbf22be2f149e152d9ae789
MD5 0edab60d5cf34d4486125c8460532718
BLAKE2b-256 560685e78cb41d22db06c4905f5b3dc99848edbf06afdf637747d8578e4a89a8

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