Commit 6de45b4f6626982fe9b02143d58f856e49eb77e3

Authored by Macieski
1 parent b978d374
Exists in master

utils

wscacicneo/utils/__init__.py 0 → 100644
... ... @@ -0,0 +1 @@
  1 +#
... ...
wscacicneo/utils/utils.py 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +import requests
  2 +import json
  3 +
  4 +class Utils:
  5 +
  6 + def __init__(self):
  7 + pass
  8 +
  9 + def to_url(*args):
  10 + return '/'.join(list(args))
... ...