I hereby claim:
- I am dowwie on github.
- I am dowwie (https://keybase.io/dowwie) on keybase.
- I have a public key ASCP2ZdSKPFGdm0BB6qVpYSEy4MYa8s29VooXlJn-9gnSgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import timeit | |
class reify(object): | |
def __init__(self, wrapped): | |
self.wrapped = wrapped | |
try: | |
self.__doc__ = wrapped.__doc__ | |
except: # pragma: no cover | |
pass |
from marshmallow import fields, Schema, pprint | |
from abc import ABCMeta, abstractmethod | |
class Serializable(metaclass=ABCMeta): | |
@classmethod | |
@abstractmethod | |
def serialization_schema(cls): | |
""" |
import timeit | |
import copy | |
from statistics import median, mean, stdev | |
def dictcopy1(): | |
a = {'one': 1, 'two': 2, 'three': 3} | |
b = dict(a) | |
return b |
I'm working full time porting the vast majority of Apache Shiro, a robust security management platform-framework written in Java, to Python 3. Porting is a massive undertaking and I could use some help. I'm working as quickly as possible, making things pythonic as I go. Interfaces and abstract objects will come last and any major refactoring will come even later. I have to get my arms around this beast first. | |
email me at [email protected] if you are interested in working together on this project | |
thanks to Les and Apache for making Shiro happen | |
It's not a question of *IF* this porting project will finish but *WHEN* -- the sooner I get help, the sooner the python community can benefit |