Metadata-Version: 1.1
Name: swinlnk
Version: 0.1.2
Summary: Create windows shortcuts (.lnk files) from anywhere
Home-page: http://github.com/bristi/swinlnk
Author: Brian Stidsen
Author-email: brianstidsen@gmail.com
License: MIT
Description: Summary
        =======
        
        Create windows shortcuts (`.lnk` files) from anywhere, including linux..
        
        Python adaptation of some bash/C from
        http://www.mamachine.org/mslink/index.en.html that seems to work. I have no
        clue how.. All credits go to that author for deciphering the specifications
        laid out by Microsoft here:
        http://msdn.microsoft.com/en-us/library/dd871305.aspx
        
        This currently is able to at least create local windows shortcuts.
        
        Installation
        ============
        
        To install: ``pip install swinlnk``
        
        Example
        =======
        
        ```python
        from swinlnk.swinlnk import SWinLnk
        
        swl = SWinLnk()
        
        swl.create_lnk('W:\\Foo\\Bar', '/mnt/win_share/playground/Bar_winlink.lnk')
        ```
        
Keywords: lnk
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
