-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README.md - Fix Base46 input example
- Loading branch information
Showing
5 changed files
with
98 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
''' | ||
""" | ||
The MIT License (MIT) | ||
Copyright (c) 2015 Sascha Spreitzer, Red Hat | ||
|
@@ -20,23 +20,23 @@ | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
''' | ||
""" | ||
|
||
|
||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name = "sid", | ||
version = "0.2", | ||
author = "Sascha Spreitzer", | ||
author_email = "[email protected]", | ||
description = ("Python library to convert Windows SIDs"), | ||
license = "MIT", | ||
keywords = "windows sid", | ||
url = "https://github.com/sspreitzer/python-sid", | ||
package_dir = {'': 'src'}, | ||
packages = ['sid'], | ||
name="sid", | ||
version="0.3", | ||
author="Sascha Spreitzer", | ||
author_email="[email protected]", | ||
description=("Python library to convert Windows SIDs"), | ||
license="MIT", | ||
keywords="windows sid", | ||
url="https://github.com/sspreitzer/python-sid", | ||
package_dir={"": "src"}, | ||
packages=["sid"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
''' | ||
""" | ||
A Python module to convert Windows SIDs | ||
import sid | ||
s = sid.sid('S-1-5-21-2127521184-1604012920-1887927527-72713') | ||
print s.base64() | ||
''' | ||
""" | ||
|
||
|
||
from .lib import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters