Metadata-Version: 1.1
Name: octorest
Version: 0.2.dev3
Summary: Client library for OctoPrint REST API
Home-page: https://github.com/dougbrion/OctoRest
Author: Miro Hrončok, Jiří Makarius, Douglas Brion
Author-email: miro@hroncok.cz, meadowfrey@gmail.com, me@douglasbrion.com
License: MIT
Description: # OctoRest
        
        ### Python client library for OctoPrint REST API
        
        Work in progress...
        
        This is continued work after the great start by Miro Hrončok of covering the OctoPrint REST API. Nearly all current functionality in the API has been covered, but as of yet I have not had time to add extensive testing. (Will do...) 
        
        ### Installation
        
        This fork is behind the version of OctoRest on ```pip```.
        
        Therefore this version must be installed thus:
        
        ```
        git clone git@github.com:dougbrion/octoclient.git
        sudo pip install -e octoclient
        ```
        
        A check list of the features currently implemented can be seen below.
        
        * ~~Version information~~
        * Apps
            - Session Keys
                - ~~Obtaining a temporary session key~~
                - ~~Verifying a temporary session key~~
        * Connection handling
            - ~~Get connection settings~~
            - ~~Issue a connection command~~
                - ~~Connect~~
                - ~~Disconnect~~
                - ~~Fake_ack~~
        * File operations
            - ~~Retrieve all files~~
            - ~~Retrieve files from specific location~~
            - ~~Upload file or create folder~~
            - ~~Retrieve a specific file’s or folder’s information~~
            - Issue a file command
                - ~~Select~~
                - Slice (TODO: profile.* and position)
                - ~~Copy~~
                - ~~Move~~
            - ~~Delete file~~
        * Job operations
            - Issue a job command
                - ~~Start~~
                - ~~Cancel~~
                - ~~Restart~~
                - Pause
                    - Pause
                    - Resume
                    - ~~Toggle~~
            - ~~Retrieve information about the current job~~
        * Languages
            - ~~Retrieve installed language packs~~
            - ~~Upload a language pack~~
            - ~~Delete a language pack~~
        * Log file management
        * Printer operations
            - ~~Retrieve the current printer state~~
            - ~~Issue a print head command~~
                - ~~Jog~~
                - ~~Home~~
                - ~~Feedrate~~
            - ~~Issue a tool command~~
                - ~~Target~~
                - ~~Offset~~
                - ~~Select~~
                - ~~Extrude~~
                - ~~Flowrate~~
            - ~~Retrieve the current tool state~~
            - ~~Issue a bed command~~
                - ~~Target~~
                - ~~Offset~~
            - ~~Retrieve the current bed state~~
            - ~~Issue an SD command~~
                - ~~Init~~
                - ~~Refresh~~
                - ~~Release~~
            - ~~Retrieve the current SD state~~
            - ~~Send an arbitrary command to the printer~~
        * Printer profile operations
            - ~~Retrieve all printer profiles~~
            - Add a new printer profile
            - Update an existing printer profile
            - ~~Remove an existing printer profile~~
        * Settings
            - ~~Retrieve current settings~~
            - ~~Save settings~~
            - Regenerate the system wide API key
        * Slicing
            - ~~List All Slicers and Slicing Profiles~~
            - ~~List Slicing Profiles of a Specific Slicer~~
            - ~~Retrieve Specific Profile~~
            - Add Slicing Profile
            - ~~Delete Slicing Profile~~
        * System
            - ~~List all registered system commands~~
            - ~~List all registered system commands for a source~~
            - ~~Execute a registered system command~~
        * Timelapse
            - ~~Retrieve a list of timelapses and the current config~~
            - ~~Delete a timelapse~~
            - ~~Issue a command for an unrendered timelapse~~
                - ~~Render~~
            - ~~Delete an unrendered timelapse~~
            - ~~Change current timelapse config~~
        * User
            - ~~Retrieve a list of users~~
            - ~~Retrieve a user~~
            - ~~Add a user~~
            - ~~Update a user~~
            - ~~Delete a user~~
            - ~~Reset a user’s password~~
            - ~~Retrieve a user’s settings~~
            - Update a user’s settings
            - ~~Regenerate a user’s personal API key~~
            - ~~Delete a user’s personal API key~~
        * Util
            - Test paths or URLs
                - Path
                - URL
                - Server
        * Wizard
            - ~~Retrieve additional data about registered wizards~~
            - ~~Finish wizards~~
        
Keywords: octoprint,3d printing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Printing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Networking :: Monitoring
