small python ray

This commit is contained in:
Barak Michener 2020-09-12 15:57:57 -07:00
commit e02e80708a
15 changed files with 1261 additions and 0 deletions

11
python/main.py Normal file
View file

@ -0,0 +1,11 @@
import cloudpickle
import proto.task_pb2_grpc
def main():
a = cloudpickle.dumps("hello world")
print(a)
if __name__ == "__main__":
main()