HttpClientMultipart (version 0.0.1)
index
httpclientmultipart.py

This package implement client to upload file with HTTP

 
Modules
       
uuid

 
Classes
       
builtins.object
Multipart

 
class Multipart(builtins.object)
    This class build a multipart form-data from filename.
 
  Methods defined here:
__init__(self)
Initialize self.  See help(type(self)) for accurate signature.
build_multipart(self, fields: Sequence[Tuple[str, str]], files: Sequence[Tuple[str, str, str]]) -> bytes
this function return the body from 
fields (name, value) and files (name, filename, path)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        __all__ = ['Multipart']
__author_email__ = 'mauricelambert434@gmail.com'
__copyright__ = '\nHttpClientMultipart Copyright (C) 2021 Mauric...ome to redistribute it\nunder certain conditions.\n'
__description__ = 'This package implement client to upload file using HTTP multipart'
__license__ = 'GPL-3.0 License'
__maintainer__ = 'Maurice Lambert'
__maintainer_email__ = 'mauricelambert434@gmail.com'
__url__ = 'https://github.com/mauricelambert/HttpClientMultipart'

 
Author
        Maurice Lambert