Metadata-Version: 2.1
Name: alice-images
Version: 0.0.2
Summary: Work with alice skills images: upload|list|delete
Home-page: https://github.com/AlekseevAV/alice-images
Author: Aleksandr Alekseev
Author-email: alekseevavx@gmail.com
License: UNKNOWN
Description: # Alice-images
        
        Work with alice skills images: upload|list|delete
        
        [Yandex docs](https://tech.yandex.ru/dialogs/alice/doc/resource-upload-docpage/)
        
        
        ### Usage
        
        #### In code
        
            from alice_images import upload_image
        
            upload_image(
                skill_id='<skill_id>',
                oauth_token='<oauth_token>',
                image_url='https://<image_url>/'  # or image_path='/tmp/image.jpg'
            )
            
        #### CLI
        
        Upload by url:
        
            alice_images --skill_id '<skill_id>' --oauth_token '<oauth_token>' upload --image_url 'https://<image_url>/'
        
        Upload by path:
        
            alice_images --skill_id '<skill_id>' --oauth_token '<oauth_token>' upload --image_url 'https://<image_url>/'
            
        For more info use `--help`:
        
            $ alice_images --help
            Usage: alice_images [OPTIONS] COMMAND [ARGS]...
            
            Options:
              --skill-id TEXT     Alice skill id  [required]
              --oauth-token TEXT  Account OAuth token  [required]
              --help              Show this message and exit.
            
            Commands:
              delete
              list
              status
              upload
        
Keywords: yandex alice images
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
