{ "info": { "author": "Seria", "author_email": "zzqsummerai@yeah.net", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# Nebulae Brochure\n\n**A novel and simple framework based on concurrent mainstream frameworks and other image processing libraries. It is convenient to deploy almost every module independently.**\n\n------\n\n## Installation\n\n```sh\npip install nebulae\n```\n\nThe latest version supports PyTorch1.6 and TensorFlow2.3\n\n\n------\n\n## Modules Overview\n\nFuel: easily manage and read dataset you need anytime\n\nToolkit: includes many utilities for better support of nebulae\n\n------\n\n## Fuel\n\n**FuelGenerator(file_dir, file_list, dtype, is_seq)**\n\nBuild a FuelGenerator to spatial efficently store data.\n\n- config: [dict] A dictionary containing all parameters. The other arguments and this are mutually exclusive.\n\n- file_dir: [str] Where your raw data is.\n\n- file_list: [str] A csv file in which all the raw datum file name and labels are listed.\n\n- dtype: [list of str] A list of data types of all columns but the first one in *file_list*. Valid data types are 'uint8', 'uint16', 'uint32', 'int8', 'int16', 'int32', 'int64', 'float16', 'float32', 'float64', 'str'. Plus, if you add a 'v' as initial character e.g. 'vuint8', the data of each row in this column is allowed to be saved in variable length.\n\n- is_seq: [bool] If it is data sequence e.g. video frames. Defaults to false.\n\nAn example of file_list.csv is as follow. 'image' and 'label' are the key names of data and labels respectively. Note that the image name is a path relative to *file_dir*.\n\n| image | label |\n| ----------- | ----- |\n| img_1.jpg | 2 |\n| img_2.jpg | 0 |\n| ... | ... |\n| img_100.jpg | 5 |\n\nif *is_seq* is True, the csv file is supposed to look like the example below (when char-separator is ',' and quoting-char is '\"'):\n\n| image | label |\n| ------------------------------------------------------------ | ----- |\n| \"vid_1_frame_1.jpg,vid_1_frame_2.jpg,...,vid_1_frame_24.jpg\" | 2 |\n| \"vid_2_frame_1.jpg,vid_2_frame_2.jpg,...,vid_2_frame_15.jpg\" | 0 |\n| ... | ... |\n| \"vid_100_frame_1.jpg,vid_100_frame_2.jpg,...,vid_100_frame_39.jpg\" | 5 |\n\n\n\n**FuelGenerator.generate(dst_path, height, width, channel=3, encode='JPEG', shards=1, keep_exif=True)**\n\n- dst_path: [str] A hdf5/npz file where you want to save the data.\n- height: [int] range between (0, +\u221e). The height of image data.\n- width: [int] range between (0, +\u221e). The height of image data.\n- channel: [int] The height of image data. Defaults to 3.\n- encode: [str] The mean by which image data is encoded. Valid encoders are 'jpeg' and 'png'. 'PNG' is the way without information loss. Defaults to 'JPEG'.\n- shards: [int] How many files you need to split the data into. Defaults to 1.\n- keep_exif: [bool] Whether to keep EXIF information of photos. Defaults to true.\n\n```python\nimport nebulae as neb\n# create a data generator\nfg = neb.fuel.Generator(file_dir='/home/file_dir',\n file_list='file_list.csv',\n dtype=['vuint8', 'int8'])\n# generate compressed data file\nfg.generate(dst_path='/home/data/fuel.hdf5', \n channel=3,\n height=224,\n width=224)\n```\n\n\n\n**FuelGenerator.modify(config=None)**\n\nYou can edit properties again for generating other file.\n\n```python\nfg.modify(height=200, width=200)\n```\n\nPassing a dictionary of changed parameters is equivalent.\n\n```python\nconfig = {'height': 200, 'width': 200}\nfg.modify(config=config)\n```\n\n\n\n**Tank(data_path, data_specf, batch_size, shuffle, in_same_size, fetch_fn, prep_fn, collate_fn)**\n\nBuild a Fuel Tank that allows you to deposit datasets.\n\n- data_path: [str] The full path of your data file. It must be a hdf5/npz file.\n- data_specf: [dict] A dictionary containing key-dtype pairs.\n- batch_size: [int] The size of a mini-batch.\n- shuffle: [bool] Whether to shuffle data samples every epoch. Defaults to True.\n- in_same_size: [bool] Whether to ensure the last batch has samples as many as other batches. Defaults to True.\n- fetch_fn: [func] The function which takes a single datum from dataset.\n- prep_fn: [func] The function which preprocesses fetched datum. Defaults to None.\n- collate_fn: [func] The function which concatenates data as a mini-batch. Defaults to None.\n\nE.g.\n\n```python\nfrom nebulae.fuel import depot\n# define data-reading functions\ndef fetcher(data, idx):\n ret = {}\n ret['image'] = data['image'][idx]\n ret['label'] = data['label'][idx].astype('int64')\n return ret\n\ndef prep(data):\n # convert to channel-first format\n data['image'] = np.transpose(data['image'], (2, 0, 1)).astype('float32')\n return data\n\n# create a data depot\ntk = depot.Tank(\"/home/dataset.hdf5\",\n {'image': 'vunit8', 'label': 'int64'},\n batch_size=128, shuffle=True, \n fetch_fn=fetcher, prep_fn=prep)\n```\n\n\n\n**Tank.next()** \n\nReturn a batch of data, labels and other information.\n\n\n\n**Tank.MPE**\n\nAttribute: how many iterations there are within an epoch for each dataset.\n\n\n\n**len(Tank)**\n\nAttribute: the number of datum in this dataset.\n\n\n\n**Comburant()**\n\nComburant is a container to pack up all preprocessing methods.\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Data SourceAugmentationUsage
Imageflipflip matrix vertically or horizontally
cropcrop matrix randomly with a given area and aspect ratio
rotaterotate matrix randomly within a given range
brightenadjust brightness given an increment/decrement factor
contrastadjust contrast given an expansion/shrinkage factor
saturateadjust saturation given an expansion/shrinkage factor
Sequencesamplingpositive int, denoted as theta: sample an image every theta frames
\n\n---\n\n## Aerolog\n\n**DashBoard(log_path='./aerolog', window=1, divisor=10, span=30, format=None)**\n\n- log_path: [str] The place where logs will be stored in.\n- window: [int] Window size for moving average.\n- divisor: [int] How many segments the Y axis is to be divided into.\n- span: [int] The length of X axis.\n- format: [dict of tuple] Specify the format in which results will be displayed every step. Four available format types are 'raw', 'percent', 'tailor' and 'inviz'.\n\nDashBoard is a terminal-favored tool for monitoring your training procedure. It prints a dynamically refreshed progress bar with some important metrics. Besides, it shows a real-time changed curve to visualize how well the training and test phases go.\n\n\n\n**DashBoard.gauge(entry, mile, epoch, mpe, stage, interval=1, duration=None)**\n\n- entry: [dict] K-V pairs to be displayed.\n- mile: [int] The current step.\n- epoch: [int] The current epoch.\n- mpe: [int] The number of steps within an epoch, i. e. Miles Per Epoch\n- stage: [str] The name of current stage.\n- interval: [int] Display results every a fixed number of steps.\n- duration: [float] The elapsed time since last step or epoch\n\nCall this function after a step or epoch to monitor current states.\n\n\n\n**DashBoard.log(gauge, tachograph, record)**\n\n- gauge: [bool] Whether to draw metrics as a picture.\n- tachograph: [bool] Whether to write down metrics as a csv file.\n- record: [str] Append metrics logged this time after the recording file.\n\nWrite the intermediate results into files.\n\n---\n\n## Cockpit\n\n**Engine(device, ngpus=1, least_mem=2048, available_gpus=())**\n\n- device: [str] To run the model on which type of devices. You can either choose 'CPU' or 'GPU'.\n- ngpus: [int] The number of GPUs to be taken. This argument doesn't work when device is CPU.\n- least_mem: [int] Only the GPUs with at least this amount of memory left are regarded as available.\n- available_gpus: [tuple of int] Set the available GPUs explicitly. This argument doesn't work when device is CPU. In default case, it is set to empty tuple and Nebulae will detect available GPUs automatically.\n\nAn Engine would take care of the devices to be used especially GPU environment. Usually you need to gear it into your Craft.\n\n\n\n**TimeMachine(ckpt_path, save_path, max_anchors=-1)**\n\n- ckpt_path: [str] The place where checkpoints will be read from.\n- save_path: [str] The place where checkpoints will be stored.\n- max_anchors: [int] The max number of checkpoints to be kept.\n\nManage checkpoint saving and reading by creating a TimeMachine.\n\n\n\n**TimeMachine.to(craft, file='', ckpt_scope=None, frozen=False)**\n\n- craft: [Craft] NN model.\n- file: [str] The file name of checkpoint.\n- ckpt_scope: [str] Only the parameters inside the scope can be loaded.\n- frozen: [bool] Frozen model means omitting unmatched part is not allowed.\n\n\n\n**TimeMachine.drop(craft, file='', save_scope=None)**\n\n- craft: [Craft] NN model.\n- file: [str] The file name of checkpoint.\n- save_scope: [str] Only the parameters inside the scope can be saved.\n\n---\n\n## Toolkit\n\n**GPUtil()**\n\nCreate a tool for monitoring GPU status. In fact, it is leveraged implicitly when instantiate an Engine.\n\n\n\n**GPUtil.available(ngpus, least_mem)**\n\n- ngpus: [int] The number of GPUs to be selected\n- least_mem: [int] The least free memory (MiB) a valid GPU should have.\n\nReturns a list of available GPU information including serial number, name and memory. If the available GPUs are not sufficient, it contains the most devices system can offer.\n\n\n\n**GPUtil.monitor(sec)**\n\n- sec: [int] The monitor logs every a few seconds. Default to 5.\n\nStart monitoring GPUs. Note that setting sec as a small number might cause abnormal statistics. Turn it bigger if there are too many GPUs on your machine.\n\n\n\n**GPUtil.status()**\n\nStop monitoring and returns GPUs status summary.\n\n\n------\n\n## Astrobase\n\n**Craft(scope)**\n\n- scope: [str] Name of this craft. It will be the base name of saved model file by default.\n\nCraft is a base class of neural network which is compatible with the backend framework. It is convenient especially when you want to fork open-sourced codes into nebulae or when you find it difficult to implement a desired function.\n\n```python\nfrom nebulae.astrobase import dock\nimport torch\n# designate pytorch as core backend\nnebulae.Law.CORE = 'pytorch'\n# create a network using nebulae\nclass NetNeb(dock.Craft):\n def __init__(self, nclass, scope='NEB'):\n super(Net, self).__init__(scope)\n self.flat = dock.Reshape()\n self.fc = dock.Dense(512, nclass)\n\n def run(self, x):\n x = self.flat(x, (-1, 512))\n y = self.fc(x)\n return y\n# you can create a same network using pytorch functions\nclass NetTorch(dock.Craft):\n def __init__(self, nclass, scope='TORCH'):\n super(Net, self).__init__(scope)\n self.fc = torch.nn.Linear(512, nclass)\n\n def run(self, x):\n x = x.view(-1, 512)\n y = self.fc(x)\n return y\n```\n\n\n\n**Rudder()**\n\nRudder is a context in which all gradients will be computed and backpropogated through variables accordingly.\n\n\n\n**Prober()**\n\nProber is a context in which all gradients will be computed but not backpropogated.\n\n\n\n**Nozzle()**\n\nNozzle is a context in which all variables are fixed and no gradient is going to be computed.\n\n\n\n**coat(datum, as_const)**\n\n- datum: [int/float/array/tensor] input datum.\n- as_const: [bool] whether to make datum as an untrainable tensor. Defaults to True.\n\nThe input tensor will be put into current used device. Any legal input is going to be converted to a tensor at first.\n\n\n\n**shell(datum, as_np)**\n\n- datum: [tensor] input datum.\n- as_np: [bool] whether to make datum as a regular array. Defaults to True.\n\nThe input tensor will be taken out from current used device.\n\n\n\n**autoPad(in_size, kernel, stride, dilation)**\n\n- in_size: [tuple] input size e.g. (h, w) for 2d tensor\n- kernel: [tuple] kernel size\n- stride: [tuple/int] convolution stride\n- dilation: [tuple/int] stride in atrous convolution\n\nReturn the padding tuple leading to an output in same size with input when stride is 1. e.g. (left, right, top, bottom, front, back) for 3d tensor\n\n\n\n**Multiverse(universe, nworld=1)**\n\n- universe: [Craft] NN model.\n- nworld: [int] The number of devices on which model would be distributed.\n\nMultiverse is a parallelism manager that makes it easier to deploy distributed training. The following example code shows what's the difference between regular training and distributed training.\n\n```python\nimport nebulae as neb\nfrom nebulae.fuel import depot\nfrom nebulae.astrobase import dock\nfrom nebulae.cockpit import Engine, TimeMachine\n\n ############\ndef launch(mv=None): ## <====================================[1]\n ############\n\n ############\n mv.init() ## <===========================================[2]\n ############\n\n # ----------------------- Aerolog ------------------------ #\n # defined Dashboard\n\n # ----------------------- Cockpit ------------------------ #\n ###################\n ng = Engine(device=\"gpu\", ngpus=mv.nworld) ## <==========[3]\n ###################\n tm = TimeMachine(save_path=\"./ckpt\",\n ckpt_path=\"./ckpt\")\n\n # ------------------------ Fuel -------------------------- #\n # define dataset Tanks\n\n # ---------------------- Space Dock ---------------------- #\n ###################\n with mv.scope(): ## <====================================[7]\n ###################\n class Net(dock.Craft):\n def __init__(self, nclass, scope):\n super(Net, self).__init__(scope)\n # define architecutre\n\n def run(self, x):\n # define forward procedure\n\n class Train(dock.Craft):\n def __init__(self, net, scope='TRAIN'):\n super(Train, self).__init__(scope)\n self.net = net\n # initialize params\n\n ###############\n @mv.Executor ## <================================[8]\n ###############\n def run(self, x, z):\n # define training step\n loss = self.net(x, z)\n #########################\n loss = mv.reduce(loss) ## <==================[4]\n #########################\n\n class Dev(dock.Craft):\n def __init__(self, net, scope='DEVELOP'):\n super(Dev, self).__init__(scope)\n self.net = net\n # initialize params\n\n ###############\n @mv.Executor ## <================================[8]\n ###############\n def run(self, x, z, idx):\n # define testing step\n loss = self.net(x, z)\n #########################\n loss = mv.reduce(loss) ## <==================[4]\n #########################\n\n # ----------------------- Launcher ----------------------- #\n net = Net(10, 'cnn')\n net.gear(ng)\n ###################################################\n net, dataT, dataV = mv.sync(net, (dataT, dataV)) ## <====[5]\n ###################################################\n train = Train(net)\n dev = Dev(net)\n\n for epoch in range(10):\n for mile in range(mpe):\n # train and test\n\nif __name__ == '__main__':\n # ------------------- Global Setting --------------------- #\n if is_distributed:\n \t#####################################\n \tmv = neb.law.Multiverse(launch, 4) ##\n mv() ## <==============[6]\n #####################################\n else:\n launch()\n```\n\nChanges [1]~[6] are necessary however [7] and [8] are only needed for TensorFlow backend.\n\n\n\n**Multiverse.init()**\n\nInitialize the multiverse manager.\n\n\n\n**Multiverse.scope()**\n\nCreate a parallel scope.\n\n\n\n**Multiverse.sync(models, data)**\n\n- models: [Craft] NN model.\n- data: [tuple of Tank] All datasets in use\n\nSynchronize the distributed models and data.\n\n\n\n**Multiverse.reduce(tensor, aggregate=False)**\n\n- tensor: [tensor] Returned tensor to be reduced.\n- aggregate: [bool] Either to sum all tensors up or average on them. Defaults to False which means taking average.\n\nCollect results returned by all distributed devices.\n\n\n\n**Multiverse.Executor**\n\nA decorator poiting out the main function which is usually charged with training and testing.\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "nebulae", "package_url": "https://pypi.org/project/nebulae/", "platform": null, "project_url": "https://pypi.org/project/nebulae/", "project_urls": { "Homepage": "https://github.com/" }, "release_url": "https://pypi.org/project/nebulae/0.5.27/", "requires_dist": [ "h5py", "pillow", "numpy", "pandas", "piexif", "scipy", "matplotlib", "onnx", "tf2onnx", "tensorflow-probability", "tensorflow-addons", "protobuf (>=3.13)", "torch (>=1.0)", "ptflops (>0.6.7)" ], "requires_python": "", "summary": "A novel and simple framework based on prevalent DL frameworks and other image processing libs. v0.5.27: delete H265 and keep AV1.", "version": "0.5.27", "yanked": false, "yanked_reason": null }, "last_serial": 13825772, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d8db7a51ff7582eca374fc1b4b6e46c4", "sha256": "82e3542db71657c7d07de39b81b929f027fccb4189cf6e91d35889950b28a15b" }, "downloads": -1, "filename": "nebulae-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d8db7a51ff7582eca374fc1b4b6e46c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13731, "upload_time": "2018-11-08T17:02:15", "upload_time_iso_8601": "2018-11-08T17:02:15.580816Z", "url": "https://files.pythonhosted.org/packages/a6/75/ca7432bcdcb29d1e74407c9bc998fc3e8c01e1f8b3d73f52a23efca821d9/nebulae-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1e2cac1172962afc444d9caf5df6aea", "sha256": "8886a74d4df45c3bf000cacccb2d0b7a15b723d6c80f2ed1f2dd8b31f6f5cbc7" }, "downloads": -1, "filename": "nebulae-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d1e2cac1172962afc444d9caf5df6aea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7851, "upload_time": "2018-11-08T17:02:18", "upload_time_iso_8601": "2018-11-08T17:02:18.950257Z", "url": "https://files.pythonhosted.org/packages/47/45/5befef34c252ac7f6aa268df2bad607d9990a7be0278a0a7008aa1a15eac/nebulae-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "496402b85b2940589d640a9201051e87", "sha256": "767c038b467b14d30bb26b6be632e325c9adeec32584620c9ec32ad7998ca856" }, "downloads": -1, "filename": "nebulae-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "496402b85b2940589d640a9201051e87", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26746, "upload_time": "2018-12-14T10:17:19", "upload_time_iso_8601": "2018-12-14T10:17:19.936266Z", "url": "https://files.pythonhosted.org/packages/76/cb/21d9b3d561c805b4b1edd662b57b1fd6ab6edb48a1465e6709642f588d0f/nebulae-0.0.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f6a50187804ad1835236f5475fcf1ab", "sha256": "1b0ad1903a34c1ff945062776ee64b85277ce27b6a1de7c4b5f7b39e4a47e3c1" }, "downloads": -1, "filename": "nebulae-0.0.10.tar.gz", "has_sig": false, "md5_digest": "6f6a50187804ad1835236f5475fcf1ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16675, "upload_time": "2018-12-14T10:17:21", "upload_time_iso_8601": "2018-12-14T10:17:21.830573Z", "url": "https://files.pythonhosted.org/packages/42/db/91c7911eb15844f21afbc2378fa561e8953bf243fa1d9ba1a6f36fa12d71/nebulae-0.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "31e38d07bf6d1af2363978ed613f474e", "sha256": "0190e2f933dc28b8044f7874a9ba93d3019067c059fa58678d188de97d94be67" }, "downloads": -1, "filename": "nebulae-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "31e38d07bf6d1af2363978ed613f474e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27039, "upload_time": "2018-12-16T05:15:52", "upload_time_iso_8601": "2018-12-16T05:15:52.634882Z", "url": "https://files.pythonhosted.org/packages/39/5b/10df9226082095f1dcbe79a203d3dc591fbbeaf6f08b77a03ee163498872/nebulae-0.0.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eaa7ddc737c1e85187362ab4372f13b", "sha256": "4e35e4800b52a0f67407200f264f29cfec26ff1d22b02c1e134f2c5997cd6700" }, "downloads": -1, "filename": "nebulae-0.0.12.tar.gz", "has_sig": false, "md5_digest": "5eaa7ddc737c1e85187362ab4372f13b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16993, "upload_time": "2018-12-16T05:15:55", "upload_time_iso_8601": "2018-12-16T05:15:55.005171Z", "url": "https://files.pythonhosted.org/packages/66/4e/d749317fec3b87071ff784a30a5d0f2911d1af3b1457c15b4431f21002f7/nebulae-0.0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "8d0df6047c3e6b7c1dbde4f50af31380", "sha256": "b929de9b384640f6656ac3a05ae446abd8fe7682466cad568bd239b96f0289f0" }, "downloads": -1, "filename": "nebulae-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "8d0df6047c3e6b7c1dbde4f50af31380", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27905, "upload_time": "2018-12-20T07:18:55", "upload_time_iso_8601": "2018-12-20T07:18:55.819187Z", "url": "https://files.pythonhosted.org/packages/e6/89/68cf26656f486a584ea597713177c8416f71556d8341c80f622e2606a63b/nebulae-0.0.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "396e500d8f757547501416f8ba81c386", "sha256": "9cbe2100f699c6014ee0a76c475ae12089009b76257f6d3c31cc9ea2e2e04985" }, "downloads": -1, "filename": "nebulae-0.0.13.tar.gz", "has_sig": false, "md5_digest": "396e500d8f757547501416f8ba81c386", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17783, "upload_time": "2018-12-20T07:18:59", "upload_time_iso_8601": "2018-12-20T07:18:59.919457Z", "url": "https://files.pythonhosted.org/packages/e0/df/29615112a15db2b43f81749d586e4bd1b13f392b1c3ebed48129274b03e5/nebulae-0.0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "aeee33e419af66f481327c9da890037f", "sha256": "bdaa4429325def68816d5f88ffc773edc8380f1361fbea679359eeabeab84cc6" }, "downloads": -1, "filename": "nebulae-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "aeee33e419af66f481327c9da890037f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30056, "upload_time": "2018-12-20T13:10:09", "upload_time_iso_8601": "2018-12-20T13:10:09.011416Z", "url": "https://files.pythonhosted.org/packages/c3/b3/919ca6d602a59e47fb39cb2b193228dfef49d5594bb1acac986793201ff6/nebulae-0.0.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd841c257dab5a8916144e4bd78595ac", "sha256": "be29974f5b4f429ed69305ee106b4f643e6cfe28dc4fb6866eceb2fd897a9652" }, "downloads": -1, "filename": "nebulae-0.0.14.tar.gz", "has_sig": false, "md5_digest": "fd841c257dab5a8916144e4bd78595ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18871, "upload_time": "2018-12-20T13:10:12", "upload_time_iso_8601": "2018-12-20T13:10:12.153221Z", "url": "https://files.pythonhosted.org/packages/99/27/dbb1283a3df48de0b3c5359531decdd5d48a3316c34abd7dfbd86715390a/nebulae-0.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "1bdabbf8de86b6e78682c3f4627daa1f", "sha256": "409621c4e67a99785e7f2b7414f318d26901e39376c3dd12410377c79c82bd5a" }, "downloads": -1, "filename": "nebulae-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "1bdabbf8de86b6e78682c3f4627daa1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30060, "upload_time": "2018-12-21T14:26:30", "upload_time_iso_8601": "2018-12-21T14:26:30.018806Z", "url": "https://files.pythonhosted.org/packages/a5/d8/48fd09abc449f1963fd0d733349104d83b7bad6afab4f8b1d6f10cfaae82/nebulae-0.0.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "653235ad2507919a848319ef90dea86f", "sha256": "7d76ed0e589823c450fbca4dc9d38a46a562ee55b7c49db280a5b297d175e6f0" }, "downloads": -1, "filename": "nebulae-0.0.16.tar.gz", "has_sig": false, "md5_digest": "653235ad2507919a848319ef90dea86f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18973, "upload_time": "2018-12-21T14:26:34", "upload_time_iso_8601": "2018-12-21T14:26:34.453984Z", "url": "https://files.pythonhosted.org/packages/2a/99/ce821e260e029d8ac708eda58dec4b6db50b2af8aaed75f6d285fc028710/nebulae-0.0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "8e17251e4ec4d0560eee3051bdb59e32", "sha256": "aa310877103ee3f89d07c3c6d9b8fc4a05f0372ebf839b7534a4ae74037d576e" }, "downloads": -1, "filename": "nebulae-0.0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "8e17251e4ec4d0560eee3051bdb59e32", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 32546, "upload_time": "2018-12-25T10:29:14", "upload_time_iso_8601": "2018-12-25T10:29:14.537454Z", "url": "https://files.pythonhosted.org/packages/ad/59/49f46e23254416a12b3da01453ca9163adf426a8f7d07478ec16dd263afe/nebulae-0.0.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "458ba669cf985e6e74cae16bcb43479c", "sha256": "4c57c9d791a56df9a502a08547f9c96fed28437e6f7089cf06c06659d1b00a7a" }, "downloads": -1, "filename": "nebulae-0.0.17.tar.gz", "has_sig": false, "md5_digest": "458ba669cf985e6e74cae16bcb43479c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20572, "upload_time": "2018-12-25T10:29:16", "upload_time_iso_8601": "2018-12-25T10:29:16.697524Z", "url": "https://files.pythonhosted.org/packages/94/cd/be484c41df5cf5f109174693d60a4f3f1fe86c44a3660075df9a2eb517e4/nebulae-0.0.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "51861d3108908e43fc25c26705ac87cc", "sha256": "18265a093bd130701ca539656fd319c8d84789c4bcdf6b0597b216c0c38a6e28" }, "downloads": -1, "filename": "nebulae-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "51861d3108908e43fc25c26705ac87cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23045, "upload_time": "2018-12-11T09:35:25", "upload_time_iso_8601": "2018-12-11T09:35:25.014283Z", "url": "https://files.pythonhosted.org/packages/5e/0b/1fc8f4d0bae1474b6b33979af909ba0f3ce2fa8e181e472d643364dcf1c0/nebulae-0.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59969166b013040f83465bd1f6e81332", "sha256": "59f1130e49d2e833d719541a71d5b6476dc3eea9d849a6c367bc4328165a9b49" }, "downloads": -1, "filename": "nebulae-0.0.4.tar.gz", "has_sig": false, "md5_digest": "59969166b013040f83465bd1f6e81332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14975, "upload_time": "2018-12-11T09:35:27", "upload_time_iso_8601": "2018-12-11T09:35:27.502100Z", "url": "https://files.pythonhosted.org/packages/cf/13/5250e87c412d611c5872a77a1565cde2e28321eb32901fdf5f8056cf80a7/nebulae-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "86f5c62f594b41aec4d8e9f8d52129a5", "sha256": "6dfea7b700cd51c13dbfe07c927487167fd878534b146ddfbfcbadaadb58d5b4" }, "downloads": -1, "filename": "nebulae-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "86f5c62f594b41aec4d8e9f8d52129a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39082, "upload_time": "2019-01-06T13:35:39", "upload_time_iso_8601": "2019-01-06T13:35:39.907786Z", "url": "https://files.pythonhosted.org/packages/09/3b/b2633b2a7515700dced319666150c371c0e0fa4a65440a9cc1ca22a96ae9/nebulae-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11091a586fb68b427db1161e917948c1", "sha256": "b0be664172855f99911c1d5094dbeb88d6da2b8fc50381d2e6dfd0a77cf9d7b6" }, "downloads": -1, "filename": "nebulae-0.1.0.tar.gz", "has_sig": false, "md5_digest": "11091a586fb68b427db1161e917948c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25457, "upload_time": "2019-01-06T13:35:41", "upload_time_iso_8601": "2019-01-06T13:35:41.854781Z", "url": "https://files.pythonhosted.org/packages/8a/23/a846e2672424e4a11ccf38dfbc730b8122167653028a2c011073768d1af0/nebulae-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "6632b51cc2bfc53ae52d899959b46bc7", "sha256": "2240dee295a0d533d28cba7bec69ffcb15cd62bb7f5544aa01c3e06b5eaac03e" }, "downloads": -1, "filename": "nebulae-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6632b51cc2bfc53ae52d899959b46bc7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39196, "upload_time": "2019-01-07T12:46:45", "upload_time_iso_8601": "2019-01-07T12:46:45.169955Z", "url": "https://files.pythonhosted.org/packages/61/c6/25b96776fc3ec314ecf6955c1ca8c65757972fba172e96b800e340b687ea/nebulae-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed07848b21d3476da30cdddce62f3438", "sha256": "d4f4a9e2243fa808b7f88392328ca6dc82ca3d286634f9c1998f94651ac43795" }, "downloads": -1, "filename": "nebulae-0.1.1.tar.gz", "has_sig": false, "md5_digest": "ed07848b21d3476da30cdddce62f3438", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25595, "upload_time": "2019-01-07T12:46:46", "upload_time_iso_8601": "2019-01-07T12:46:46.670893Z", "url": "https://files.pythonhosted.org/packages/6b/f4/1b4f91f5b88d1de28835ee91663d2c9c5cbfc655bdf65e4f16e515c25fa9/nebulae-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "bf25a72564c08e3218c8f50201dd1fda", "sha256": "0b1bfbf9a28c847b4c358e61541ac6f962dd1b84002c58cca936ea20f7516fa1" }, "downloads": -1, "filename": "nebulae-0.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "bf25a72564c08e3218c8f50201dd1fda", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41570, "upload_time": "2019-01-28T15:57:06", "upload_time_iso_8601": "2019-01-28T15:57:06.557562Z", "url": "https://files.pythonhosted.org/packages/40/90/54dc131d5e2b9208cb4ce423f463e3ad2dbaf8853c5619d4b73b4db56197/nebulae-0.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "736c976a7e8f56bc0f7a497078583d86", "sha256": "fa75c9cbd0ab4c983c291b54f69ebf5b49fbd9047baaac77afe651e2004d7e32" }, "downloads": -1, "filename": "nebulae-0.1.10.tar.gz", "has_sig": false, "md5_digest": "736c976a7e8f56bc0f7a497078583d86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27909, "upload_time": "2019-01-28T15:57:08", "upload_time_iso_8601": "2019-01-28T15:57:08.994527Z", "url": "https://files.pythonhosted.org/packages/a7/02/a84655a9843791101ae979b8683b016bbf1af7120696b837105148de1ee5/nebulae-0.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "d06f776aad943b4b0f99137ab164590a", "sha256": "b5ea7d9351ad17dc0760ffa731f698762d39809924949b07ba47fc57fb0c8286" }, "downloads": -1, "filename": "nebulae-0.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "d06f776aad943b4b0f99137ab164590a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 55365, "upload_time": "2019-02-12T09:22:29", "upload_time_iso_8601": "2019-02-12T09:22:29.380389Z", "url": "https://files.pythonhosted.org/packages/3b/7e/4b35e80e53a00ff82b106306155297c8d531ce80044b494891b9cdb4ce3a/nebulae-0.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cd4ead383db21f4d6bb7449d7ffc320", "sha256": "54686519a6df4ac8949de93898c06ae98342605e6e24ddefeafbb785158d1b26" }, "downloads": -1, "filename": "nebulae-0.1.11.tar.gz", "has_sig": false, "md5_digest": "9cd4ead383db21f4d6bb7449d7ffc320", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29521, "upload_time": "2019-02-12T09:22:31", "upload_time_iso_8601": "2019-02-12T09:22:31.308778Z", "url": "https://files.pythonhosted.org/packages/95/cc/57b4d326303fa62fdb5286963b5637033b750ac2a51e81b543f156af6543/nebulae-0.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "172aac996ed8d9d98b53f557731eb81c", "sha256": "95d86abce0b0921971297502f296411cc18ab6abbbb280f2125b1546b54396c9" }, "downloads": -1, "filename": "nebulae-0.1.12-py3-none-any.whl", "has_sig": false, "md5_digest": "172aac996ed8d9d98b53f557731eb81c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58369, "upload_time": "2019-02-19T03:30:32", "upload_time_iso_8601": "2019-02-19T03:30:32.485169Z", "url": "https://files.pythonhosted.org/packages/a9/ae/833f3cf78c37d235b94ff1a5e48cc61ba717263194aeddd488da3331b252/nebulae-0.1.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e06f5e55effbb7731e77781e90b4546b", "sha256": "290e5080d595bb869ff469e01565d89fd35fd12d72b3b78971b35ab073e527ba" }, "downloads": -1, "filename": "nebulae-0.1.12.tar.gz", "has_sig": false, "md5_digest": "e06f5e55effbb7731e77781e90b4546b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29915, "upload_time": "2019-02-19T03:30:35", "upload_time_iso_8601": "2019-02-19T03:30:35.168211Z", "url": "https://files.pythonhosted.org/packages/8a/1b/f8b6eb2eb2f22ac6762d7c21b4ef171b015c89b3a0f912dec7b0ef855ef7/nebulae-0.1.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "bbfe9be5da07ab4f5c2609efaa90ff99", "sha256": "7249f7ef684cfb783b02a0c69150199d0cb06f5ba4f6f930ef78105282a2f414" }, "downloads": -1, "filename": "nebulae-0.1.13-py3-none-any.whl", "has_sig": false, "md5_digest": "bbfe9be5da07ab4f5c2609efaa90ff99", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58390, "upload_time": "2019-03-06T07:27:58", "upload_time_iso_8601": "2019-03-06T07:27:58.334792Z", "url": "https://files.pythonhosted.org/packages/83/59/eaa3e3ce4e24944591b70850dcf0d491776b22e990ff8a434e09bc0f433d/nebulae-0.1.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89f7de9ba81052404de8869cd4e6030f", "sha256": "dea2d093c87b9cca8916a030d8b0ef06e05d41bef3928bb41d529d3eb2ebd702" }, "downloads": -1, "filename": "nebulae-0.1.13.tar.gz", "has_sig": false, "md5_digest": "89f7de9ba81052404de8869cd4e6030f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30066, "upload_time": "2019-03-06T07:28:00", "upload_time_iso_8601": "2019-03-06T07:28:00.013781Z", "url": "https://files.pythonhosted.org/packages/e0/ff/a99046bb97e6255beb22c1a7ce56746fed281f0f75cf87b4334afe021b90/nebulae-0.1.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "fa4a142d7f79431fd2dbf3e657cf7eed", "sha256": "acc672943a94c88cca53e8d36b73809c57223426869ef3ec677883269567a697" }, "downloads": -1, "filename": "nebulae-0.1.14-py3-none-any.whl", "has_sig": false, "md5_digest": "fa4a142d7f79431fd2dbf3e657cf7eed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58373, "upload_time": "2019-03-07T06:50:12", "upload_time_iso_8601": "2019-03-07T06:50:12.188974Z", "url": "https://files.pythonhosted.org/packages/fc/16/0f05e1bb1d45f824b4abc425ef2dde9037bd9b41a26f9f4b83dea7ae0c23/nebulae-0.1.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3677541e10c6013edca4c047fb8b605", "sha256": "393be848c16eaa792fafef049e9e5f35efe83179910a99de929293eb94dccc84" }, "downloads": -1, "filename": "nebulae-0.1.14.tar.gz", "has_sig": false, "md5_digest": "a3677541e10c6013edca4c047fb8b605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30069, "upload_time": "2019-03-07T06:50:16", "upload_time_iso_8601": "2019-03-07T06:50:16.767909Z", "url": "https://files.pythonhosted.org/packages/7f/22/6ab75b13b502cea8e29d06f2e0fd579c754e65f1f3f5ba6502c82232112b/nebulae-0.1.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "f2c4793703420066736aa953cc363a4f", "sha256": "0d4bc06f56fc2bb7717871c0c1e4ec89cabeecf9f5ebdf5b62e7f7318034f271" }, "downloads": -1, "filename": "nebulae-0.1.15-py3-none-any.whl", "has_sig": false, "md5_digest": "f2c4793703420066736aa953cc363a4f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58419, "upload_time": "2019-03-12T06:22:01", "upload_time_iso_8601": "2019-03-12T06:22:01.927383Z", "url": "https://files.pythonhosted.org/packages/f6/b3/540be27e8261ceb146f6b2ed792d720d1ba2250dd65e7ba76be49878207f/nebulae-0.1.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "893bef37d742947f2e23e524fe691324", "sha256": "3ffc920cfca0836d21130724c2c7d05b3c38acfb7d615adf91d7117214e04c71" }, "downloads": -1, "filename": "nebulae-0.1.15.tar.gz", "has_sig": false, "md5_digest": "893bef37d742947f2e23e524fe691324", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30144, "upload_time": "2019-03-12T06:22:04", "upload_time_iso_8601": "2019-03-12T06:22:04.356498Z", "url": "https://files.pythonhosted.org/packages/52/5d/947ae52e99142bdde5d8d8ecb60e79e7eabc42acc2fdaa747c1a7c6f8e26/nebulae-0.1.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "c230ffdd33472a8c0257aedee730c0d5", "sha256": "7ff56eca8694dfef12ea0b20af69ad6a4c3b9ee09bd7f4a3d3ce18df033ca47f" }, "downloads": -1, "filename": "nebulae-0.1.16-py3-none-any.whl", "has_sig": false, "md5_digest": "c230ffdd33472a8c0257aedee730c0d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58434, "upload_time": "2019-03-12T07:48:07", "upload_time_iso_8601": "2019-03-12T07:48:07.950478Z", "url": "https://files.pythonhosted.org/packages/ba/34/920991cd961cef381fbb059863aa9d97a94c7d22f0e889188346466ef10d/nebulae-0.1.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0cb644802a930cf03218dd171b7d33c", "sha256": "ca8fea3e514f759b64e2adc291fa30070c0e8709b39846823e385069ae176f5e" }, "downloads": -1, "filename": "nebulae-0.1.16.tar.gz", "has_sig": false, "md5_digest": "c0cb644802a930cf03218dd171b7d33c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30192, "upload_time": "2019-03-12T07:48:10", "upload_time_iso_8601": "2019-03-12T07:48:10.165396Z", "url": "https://files.pythonhosted.org/packages/f2/1c/c3d9be4ee8418cff4e802cb80d5cb4d5062626e2a40d5aca0742864054bd/nebulae-0.1.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "ce7fe6d2038e7f777f2f530082185847", "sha256": "3faaefaf25eb787eec549ded97d547abd8322b4764fa97bee61e39b668272ea3" }, "downloads": -1, "filename": "nebulae-0.1.17-py3-none-any.whl", "has_sig": false, "md5_digest": "ce7fe6d2038e7f777f2f530082185847", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58876, "upload_time": "2019-03-20T05:58:49", "upload_time_iso_8601": "2019-03-20T05:58:49.874730Z", "url": "https://files.pythonhosted.org/packages/73/25/104b212b35f43c61511eea62d3e1b2acd1fff96086362227b274ff871bd6/nebulae-0.1.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aa7fd583119efca16ce20e66226a41f", "sha256": "4568690cb859d1e4bfecedfde80de9de90ea9ce7f9f642ac7164bc8a02006ac7" }, "downloads": -1, "filename": "nebulae-0.1.17.tar.gz", "has_sig": false, "md5_digest": "7aa7fd583119efca16ce20e66226a41f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30665, "upload_time": "2019-03-20T05:58:52", "upload_time_iso_8601": "2019-03-20T05:58:52.429677Z", "url": "https://files.pythonhosted.org/packages/68/41/b57bcaf2e39f8dd89cfceafa76f81d8114fd0ce3059ccddbf943ef67ec57/nebulae-0.1.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "e3f164fa2bec049390ab9216a1f9a4f7", "sha256": "c3654d2328703440d7101dc07560243e3fe62632eb88c1ca8c64406073b2e091" }, "downloads": -1, "filename": "nebulae-0.1.18-py3-none-any.whl", "has_sig": false, "md5_digest": "e3f164fa2bec049390ab9216a1f9a4f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58795, "upload_time": "2019-03-22T09:31:35", "upload_time_iso_8601": "2019-03-22T09:31:35.879669Z", "url": "https://files.pythonhosted.org/packages/1d/74/ab8401f6d188bbc7dd795ebdda5334e0983800a477dd62cd64ae1dc6b994/nebulae-0.1.18-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a866a4c952134c20a3ce67401f009776", "sha256": "57ec97a1f7cd3c112f12787730c59dd2a7a1580f9461ccc5777e323807ce9df4" }, "downloads": -1, "filename": "nebulae-0.1.18.tar.gz", "has_sig": false, "md5_digest": "a866a4c952134c20a3ce67401f009776", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30757, "upload_time": "2019-03-22T09:31:39", "upload_time_iso_8601": "2019-03-22T09:31:39.427720Z", "url": "https://files.pythonhosted.org/packages/c7/08/ce868c68af34951a088694ee1df5ef96cfb028b972d26c1363f4967b5b45/nebulae-0.1.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "cf22491b90db50f8402eaa7909c47d5e", "sha256": "f7889b94e2ed591f0e40bbe0779843da9da5154073f4b4b1516579ab50abbf8a" }, "downloads": -1, "filename": "nebulae-0.1.19-py3-none-any.whl", "has_sig": false, "md5_digest": "cf22491b90db50f8402eaa7909c47d5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58902, "upload_time": "2019-03-25T07:00:58", "upload_time_iso_8601": "2019-03-25T07:00:58.919854Z", "url": "https://files.pythonhosted.org/packages/68/21/f9e9dc88a620165d8f8d34954eb8fb6cac07a9ba76cd37846c316a31dc99/nebulae-0.1.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9076b8338fa5435983f343fa3620763d", "sha256": "272267db37ed31e3d9adeddf2f6de6a7f0d828acd5b7a1a3f5f665ebd86ef866" }, "downloads": -1, "filename": "nebulae-0.1.19.tar.gz", "has_sig": false, "md5_digest": "9076b8338fa5435983f343fa3620763d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30846, "upload_time": "2019-03-25T07:01:00", "upload_time_iso_8601": "2019-03-25T07:01:00.546908Z", "url": "https://files.pythonhosted.org/packages/64/bf/52e60fbc4c3b184edf6e4b3f17bd0421104acb587ab57fafb30dfd03f002/nebulae-0.1.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "03b3a0faeb24e6fde125df2a05c9e0d0", "sha256": "0acbdc8c27c888135fb956221ac522a0ac4935c52ba7223dd0cd8553f9b393d4" }, "downloads": -1, "filename": "nebulae-0.1.20-py3-none-any.whl", "has_sig": false, "md5_digest": "03b3a0faeb24e6fde125df2a05c9e0d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58875, "upload_time": "2019-03-26T06:32:56", "upload_time_iso_8601": "2019-03-26T06:32:56.710787Z", "url": "https://files.pythonhosted.org/packages/26/ed/ccfce7469fe9f6d7bae61bd6303898652c78cc336bd5ef8a8a92be44ab18/nebulae-0.1.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49db3876b1f06d1f09af2063a0482c58", "sha256": "790d711f82ed7d481304fd8efe45eac302a05a401743efa3c5100aa4ea92430f" }, "downloads": -1, "filename": "nebulae-0.1.20.tar.gz", "has_sig": false, "md5_digest": "49db3876b1f06d1f09af2063a0482c58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31178, "upload_time": "2019-03-26T06:32:58", "upload_time_iso_8601": "2019-03-26T06:32:58.585467Z", "url": "https://files.pythonhosted.org/packages/c7/35/8fbeb27a39ddcd9395a95fa66760e9c48c26d67ea106b06970d74bec04e5/nebulae-0.1.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.21": [ { "comment_text": "", "digests": { "md5": "047084580856094d4258d3ffe61bb2f3", "sha256": "c38eada3c358d50770fc0e710f3655d4a41e28d950ec9601e2f2dfc5aef9e192" }, "downloads": -1, "filename": "nebulae-0.1.21-py3-none-any.whl", "has_sig": false, "md5_digest": "047084580856094d4258d3ffe61bb2f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58981, "upload_time": "2019-03-28T07:43:40", "upload_time_iso_8601": "2019-03-28T07:43:40.143780Z", "url": "https://files.pythonhosted.org/packages/ef/46/c1806b8709e9043383aa95cd7c7b2f2c57f62f51fd82668892b7a708b439/nebulae-0.1.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd6e099e1e73856b0bcdc01308cc92e1", "sha256": "d7a9b139e2046af320937a49f997a9cc0e7da92b1d144b02f110d27b828cb33a" }, "downloads": -1, "filename": "nebulae-0.1.21.tar.gz", "has_sig": false, "md5_digest": "cd6e099e1e73856b0bcdc01308cc92e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31288, "upload_time": "2019-03-28T07:43:44", "upload_time_iso_8601": "2019-03-28T07:43:44.440376Z", "url": "https://files.pythonhosted.org/packages/4f/a4/1d3402afa68b4101c488c37d4ac8a2d764e6cb733a6991e6556526f4a317/nebulae-0.1.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "9dae8a9536de254b38557582bbe7cfa1", "sha256": "80e92ee67be68feba21d5737fded6ec7051844b0b299089461d2cbf53f270e9f" }, "downloads": -1, "filename": "nebulae-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9dae8a9536de254b38557582bbe7cfa1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39195, "upload_time": "2019-01-08T03:00:39", "upload_time_iso_8601": "2019-01-08T03:00:39.083651Z", "url": "https://files.pythonhosted.org/packages/fd/90/de33536d7ab7e0667c0d300c5ff8365d70a5b77f7e7c90a0c5ec4681ac09/nebulae-0.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21d01fb06ec0bd5690aeebfbf68b05f7", "sha256": "9b3d2c5c1160e85984759e5df7140f5486b87f7e1123f9e0afc59840d7fd1a9e" }, "downloads": -1, "filename": "nebulae-0.1.4.tar.gz", "has_sig": false, "md5_digest": "21d01fb06ec0bd5690aeebfbf68b05f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25653, "upload_time": "2019-01-08T03:00:41", "upload_time_iso_8601": "2019-01-08T03:00:41.586561Z", "url": "https://files.pythonhosted.org/packages/50/c4/65cbe0f05f9196607f3c7bd034ee22bb87acd7e7b56692db371c1d5a8ee7/nebulae-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "aa8220111cb8e5540a47f3e81a3a1f77", "sha256": "cb1604a6b8e28df0f0495caffdffb3d585285081aec98329f5b8c4170a340c33" }, "downloads": -1, "filename": "nebulae-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "aa8220111cb8e5540a47f3e81a3a1f77", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39174, "upload_time": "2019-01-08T03:21:00", "upload_time_iso_8601": "2019-01-08T03:21:00.327312Z", "url": "https://files.pythonhosted.org/packages/ec/61/5b71b37f0a232e4ac500dca1257d2ffe6a66f96d15d1c85ca84ee5944961/nebulae-0.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "358a2576b0794a4debf0c9ef6b0584c1", "sha256": "c896f75ce7f8df23c8562f9bd8f6ca26a4d6eb41766b984cb9656503716eca5b" }, "downloads": -1, "filename": "nebulae-0.1.5.tar.gz", "has_sig": false, "md5_digest": "358a2576b0794a4debf0c9ef6b0584c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25635, "upload_time": "2019-01-08T03:21:01", "upload_time_iso_8601": "2019-01-08T03:21:01.882872Z", "url": "https://files.pythonhosted.org/packages/42/45/d62665bea15366370563b99f5e5eac2a425dc1fbe9fea979fc7954ded20e/nebulae-0.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "5d9eebf5435895b0fd5ed858fe492b0b", "sha256": "b45f2de11ab58ad12096625b1d581d4f799c8deca3f2e1fdd34b4aae6cb0b535" }, "downloads": -1, "filename": "nebulae-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "5d9eebf5435895b0fd5ed858fe492b0b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40489, "upload_time": "2019-01-14T07:06:18", "upload_time_iso_8601": "2019-01-14T07:06:18.944283Z", "url": "https://files.pythonhosted.org/packages/e1/08/df3807ccbf03955a8c932589744d4919901d4390efedd48d48dade2fc365/nebulae-0.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a36d8efc21f3aba9466b1fd3b46928f", "sha256": "5597fd44f3bf96bbda361b70e542521d0c5934666987e9fac9f69ac2245d6ef0" }, "downloads": -1, "filename": "nebulae-0.1.6.tar.gz", "has_sig": false, "md5_digest": "8a36d8efc21f3aba9466b1fd3b46928f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26873, "upload_time": "2019-01-14T07:06:23", "upload_time_iso_8601": "2019-01-14T07:06:23.875456Z", "url": "https://files.pythonhosted.org/packages/48/d1/2951e18d5a0e3dd67bb67f0a737b224152766642069b77ba70b98cd95c63/nebulae-0.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "ccf644dcdd59c896ac01cc07e55a420d", "sha256": "47f544960997c3299f59d48fe1aaa4cdf25c54f0c7c175b5375569bd4e16fba6" }, "downloads": -1, "filename": "nebulae-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ccf644dcdd59c896ac01cc07e55a420d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41607, "upload_time": "2019-01-15T03:43:59", "upload_time_iso_8601": "2019-01-15T03:43:59.981582Z", "url": "https://files.pythonhosted.org/packages/b7/01/f94e5a7b4d81f0004aff55454a477d32a0b3b3eac32e3fe3e9bbb0e5fb16/nebulae-0.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ebb31d5f294e4b630c890863b4b0c96", "sha256": "857ea9707a1b591aeb63f9f0ce7ddcd45b1cc7ebb2e6b0d918bf64f2a469d88f" }, "downloads": -1, "filename": "nebulae-0.1.7.tar.gz", "has_sig": false, "md5_digest": "9ebb31d5f294e4b630c890863b4b0c96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27727, "upload_time": "2019-01-15T03:44:02", "upload_time_iso_8601": "2019-01-15T03:44:02.493851Z", "url": "https://files.pythonhosted.org/packages/37/ac/86068905a86b0084050f45decb0530ce09d185e5fa539d6adcb4a32ea478/nebulae-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "dbfd13c04bd297902240df7c9e175813", "sha256": "bd98489133d910b97bb56bd06707f21753d4d1dceaf5e95849b063a5b72091a5" }, "downloads": -1, "filename": "nebulae-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "dbfd13c04bd297902240df7c9e175813", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41613, "upload_time": "2019-01-15T03:53:01", "upload_time_iso_8601": "2019-01-15T03:53:01.233575Z", "url": "https://files.pythonhosted.org/packages/1e/08/5ab2669db9d80f620012026fe30d79fa51df36f8f2ba032b6d350f6f500e/nebulae-0.1.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20f20cffde05b7cba8278aa497b35da7", "sha256": "2b1cef5f4f87677734955352abaa0fa8fac5fd0c1728bf7a2e61a95bb4628c01" }, "downloads": -1, "filename": "nebulae-0.1.8.tar.gz", "has_sig": false, "md5_digest": "20f20cffde05b7cba8278aa497b35da7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27735, "upload_time": "2019-01-15T03:53:03", "upload_time_iso_8601": "2019-01-15T03:53:03.559504Z", "url": "https://files.pythonhosted.org/packages/92/d6/ad44f0fca8b7e5d725499b84bd79f09739cbea08499b81b39b973fb691ff/nebulae-0.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "211906625c36f4395d3768f642786c5b", "sha256": "d1ee7dd1b119d46d94ff08bfb59f680d381c96326591107db026d6d50acc0007" }, "downloads": -1, "filename": "nebulae-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "211906625c36f4395d3768f642786c5b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41424, "upload_time": "2019-01-15T07:10:41", "upload_time_iso_8601": "2019-01-15T07:10:41.398125Z", "url": "https://files.pythonhosted.org/packages/0b/24/a8c46cdfd6b661291bade82d0f60159cc1bc03f5646854cb01a175d79660/nebulae-0.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6e44a7dc6590999b7ddca195b7c501a", "sha256": "2ddc78cbce0fbabfe32db4055e084aafed8178f7e092581e4538d791d7c1ccbc" }, "downloads": -1, "filename": "nebulae-0.1.9.tar.gz", "has_sig": false, "md5_digest": "c6e44a7dc6590999b7ddca195b7c501a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27756, "upload_time": "2019-01-15T07:10:43", "upload_time_iso_8601": "2019-01-15T07:10:43.648867Z", "url": "https://files.pythonhosted.org/packages/56/4c/6df583503b8862d2812893c7b373ba77e1bd7b665b9a939f26bc6fb23856/nebulae-0.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "83a18cbf982347d27b0634fd004c6d49", "sha256": "d123f57077a8875bdf3db763eef9a59d533a67c052ae4dd3c58a6d015a7bd2b1" }, "downloads": -1, "filename": "nebulae-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "83a18cbf982347d27b0634fd004c6d49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76282, "upload_time": "2019-10-21T05:55:17", "upload_time_iso_8601": "2019-10-21T05:55:17.980616Z", "url": "https://files.pythonhosted.org/packages/a7/a2/493dcc20b713ec6d0bef7b83d6cc7745d1e6c3991042dac8a1a65d8e9e7b/nebulae-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b10549e87674fdddb8f3fc282aa55441", "sha256": "4e6ccaaa58a920a335f14ea6a965b36153507aa19b4ad0e0e4772870afa6a543" }, "downloads": -1, "filename": "nebulae-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b10549e87674fdddb8f3fc282aa55441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40086, "upload_time": "2019-10-21T05:55:20", "upload_time_iso_8601": "2019-10-21T05:55:20.109027Z", "url": "https://files.pythonhosted.org/packages/ec/3e/60a1ce9d23b98182d11aa614379da931a836eabe62cf807b31d75146f885/nebulae-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "9105b5844600eb2d54f1185b4a76f70b", "sha256": "e58bdc05fff61720398b097b55f2a4cccaaa462c576a62a7eb8b7fbee8b99324" }, "downloads": -1, "filename": "nebulae-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9105b5844600eb2d54f1185b4a76f70b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76304, "upload_time": "2019-10-22T07:55:37", "upload_time_iso_8601": "2019-10-22T07:55:37.013629Z", "url": "https://files.pythonhosted.org/packages/33/71/d26aa0dfe988c7cd39c943d85bf14ac5442f998db8ccdfdbe78ec34e70ca/nebulae-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a50a89ba19554a2bf6fde78de4b4893", "sha256": "2655abc529c4a22d394ed5e0e95bcc49d809466e97d8b59fa7df9a8fe995819c" }, "downloads": -1, "filename": "nebulae-0.2.1.tar.gz", "has_sig": false, "md5_digest": "1a50a89ba19554a2bf6fde78de4b4893", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40142, "upload_time": "2019-10-22T07:55:42", "upload_time_iso_8601": "2019-10-22T07:55:42.070925Z", "url": "https://files.pythonhosted.org/packages/7e/99/822dc69f7b73a6c9353be2729acbd1e3406d57f799f8940d8ae9471251ad/nebulae-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "b0d203269b082c70a6d92c5dbcb10b6b", "sha256": "334d6f4d3dd13a3dd2e44a9cb4006815f960ce1c183d54637167b94ebfe49585" }, "downloads": -1, "filename": "nebulae-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b0d203269b082c70a6d92c5dbcb10b6b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76291, "upload_time": "2019-10-22T08:22:21", "upload_time_iso_8601": "2019-10-22T08:22:21.022781Z", "url": "https://files.pythonhosted.org/packages/35/cb/cb726a75f0e40cb2a90e5bc7574b6d09093c31db217cec456fd1a0145e8b/nebulae-0.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "642d06cd852b930f57c39c8048f8d854", "sha256": "5669b1b803546dfc3b8778ace41760cf4f3fd50303f7318015d8a047cc1fbcd8" }, "downloads": -1, "filename": "nebulae-0.2.2.tar.gz", "has_sig": false, "md5_digest": "642d06cd852b930f57c39c8048f8d854", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40167, "upload_time": "2019-10-22T08:22:27", "upload_time_iso_8601": "2019-10-22T08:22:27.676246Z", "url": "https://files.pythonhosted.org/packages/c3/05/0551bebf9b128c2a3277d0ba104cb1fbb8d810c196d9bc090d36bfa3eb33/nebulae-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "4f308fc1537bda71e425625798126b19", "sha256": "26dad8e55ff95d644ad3634b8933e12270f28d5aa853a0b57aea6303f2917aed" }, "downloads": -1, "filename": "nebulae-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "4f308fc1537bda71e425625798126b19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76325, "upload_time": "2019-10-24T03:48:49", "upload_time_iso_8601": "2019-10-24T03:48:49.001191Z", "url": "https://files.pythonhosted.org/packages/66/15/7dcf4c9efab7dea511cf7ec9c21551ca91169d907e9fe190370a328595fc/nebulae-0.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "266308218099b71b096c87b11fa536c2", "sha256": "39dfcb6ebed24cd55af79cf8e42d2a7cee2caf1e3e55eaa639bd7fe62eb8bdb8" }, "downloads": -1, "filename": "nebulae-0.2.3.tar.gz", "has_sig": false, "md5_digest": "266308218099b71b096c87b11fa536c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40206, "upload_time": "2019-10-24T03:48:52", "upload_time_iso_8601": "2019-10-24T03:48:52.882559Z", "url": "https://files.pythonhosted.org/packages/22/a8/ecdb9bd1a45eb38eeb2fb560424d05dc8b4605bcebd4829a376fe7691c04/nebulae-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "ce519598b524dee7afe5699c28604313", "sha256": "7adb9822b5f311ac317d0059f3246151fec71d0d8517c18ab381168bea82122d" }, "downloads": -1, "filename": "nebulae-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "ce519598b524dee7afe5699c28604313", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76382, "upload_time": "2019-10-24T05:54:29", "upload_time_iso_8601": "2019-10-24T05:54:29.549605Z", "url": "https://files.pythonhosted.org/packages/17/20/f42ff3bdc6ec3e47c7aec0a444b864a6b079f0bf8e908ced76fbbb2be1e8/nebulae-0.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab4b1e88c9fae0f09ade28b3b2c0354a", "sha256": "293997d5a1dac74df41e2245375809a783072928f4785e57ff4c62d6aec2b7e4" }, "downloads": -1, "filename": "nebulae-0.2.4.tar.gz", "has_sig": false, "md5_digest": "ab4b1e88c9fae0f09ade28b3b2c0354a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40286, "upload_time": "2019-10-24T05:54:32", "upload_time_iso_8601": "2019-10-24T05:54:32.527049Z", "url": "https://files.pythonhosted.org/packages/1f/c2/70de478ff5a52fa8cd2bdebb785fb9b3b5cf8978c770746d1205c407e1ed/nebulae-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "2db9707c6a69424d3b0d4e0269749b80", "sha256": "8ffdc2bb36448b2b6c157275a16ed7e2ba6416fc0ea5b11142155d510432c244" }, "downloads": -1, "filename": "nebulae-0.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2db9707c6a69424d3b0d4e0269749b80", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76834, "upload_time": "2019-10-28T07:04:58", "upload_time_iso_8601": "2019-10-28T07:04:58.714368Z", "url": "https://files.pythonhosted.org/packages/4e/f7/c6323457a44a5be86f3e8f2a4db9ba621a3a6814649d1a5c0699d0ec77fd/nebulae-0.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c89f41fcf004206aa8d31d02c056bac", "sha256": "18fd5e68cc04cd0a8358aa7b511b967595755a6a50d5463c23be1fc3f04af1d7" }, "downloads": -1, "filename": "nebulae-0.2.5.tar.gz", "has_sig": false, "md5_digest": "1c89f41fcf004206aa8d31d02c056bac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41961, "upload_time": "2019-10-28T07:05:01", "upload_time_iso_8601": "2019-10-28T07:05:01.896265Z", "url": "https://files.pythonhosted.org/packages/99/db/0e6fa4dec71a8b76320618f40aaafe27017a58d409739e568bd0d7274539/nebulae-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c73c95dba576acc9c0898e84c351c7d8", "sha256": "b417e6f7a07a8d4c3a9545bd9189d81026831691e425721fe050f6285afdc26a" }, "downloads": -1, "filename": "nebulae-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c73c95dba576acc9c0898e84c351c7d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 85424, "upload_time": "2019-11-20T08:05:03", "upload_time_iso_8601": "2019-11-20T08:05:03.293723Z", "url": "https://files.pythonhosted.org/packages/4b/b6/55a2370b7fe59d34b1ffd2b12e30cb5d39efc512c947aebf25141f5ad83a/nebulae-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68769255b6fa4c8ba205e773de267b55", "sha256": "ebc45dda7036fb945691bc72af1df119d97fbe3f480d43e5e81325b16d7afb1c" }, "downloads": -1, "filename": "nebulae-0.3.0.tar.gz", "has_sig": false, "md5_digest": "68769255b6fa4c8ba205e773de267b55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48653, "upload_time": "2019-11-20T08:05:06", "upload_time_iso_8601": "2019-11-20T08:05:06.065883Z", "url": "https://files.pythonhosted.org/packages/fa/02/ac619755e4979f426b4424e4e48e63f4319e1c009468e14087b9e7414e86/nebulae-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "0396094ac14c63f0fd8a607bf902ff93", "sha256": "47a9b0a9ddaff236fba801a4fec72f8223451956deffeb4f1cf80e66421c30b4" }, "downloads": -1, "filename": "nebulae-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0396094ac14c63f0fd8a607bf902ff93", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121365, "upload_time": "2020-02-29T06:23:41", "upload_time_iso_8601": "2020-02-29T06:23:41.793629Z", "url": "https://files.pythonhosted.org/packages/37/9d/c4d6590b7eb4ae2b06301891a1054dc97d7f2db93c68edf79c0646c316db/nebulae-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03740fc6119b828cd048ed75d097739c", "sha256": "28b10ed2b529a4eb8741d928a19dd1973d05639dda285878d89532104a7d9f3b" }, "downloads": -1, "filename": "nebulae-0.3.1.tar.gz", "has_sig": false, "md5_digest": "03740fc6119b828cd048ed75d097739c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53743, "upload_time": "2020-02-29T06:23:44", "upload_time_iso_8601": "2020-02-29T06:23:44.245138Z", "url": "https://files.pythonhosted.org/packages/87/6c/27b7fd7b32ac3ff43d29492756fba7fe57b1949a7d7450050db9ab8f3a26/nebulae-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "1d25d1e0d0e907d2359027509bbf7171", "sha256": "183f929bff94f2564f96c91ce857137750fcabb2b360602f3723a91881cce9ae" }, "downloads": -1, "filename": "nebulae-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1d25d1e0d0e907d2359027509bbf7171", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 122423, "upload_time": "2020-07-21T03:40:45", "upload_time_iso_8601": "2020-07-21T03:40:45.210526Z", "url": "https://files.pythonhosted.org/packages/2a/46/d79b923f4f921ad950bb4323365fc16e8ce2540b3df82e168f2e063c17fa/nebulae-0.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8844321dad9a35fa34c13a05ccd38c5b", "sha256": "22057ab4b425ba8393aa4cb61914613bc243565a8b5bf8a822a6ac89a671e49b" }, "downloads": -1, "filename": "nebulae-0.3.2.tar.gz", "has_sig": false, "md5_digest": "8844321dad9a35fa34c13a05ccd38c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57237, "upload_time": "2020-07-21T03:40:47", "upload_time_iso_8601": "2020-07-21T03:40:47.858659Z", "url": "https://files.pythonhosted.org/packages/68/25/06ff76b7217a19ffa7f3a47fc62d9e9664a04d98919b14ddb4e684b7342a/nebulae-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1022a8fbd0e1ff8abd67b08000d38212", "sha256": "6090809f6b93c76f958075ae8016f36ebf59018ff3d516ea01dac3571976b7f4" }, "downloads": -1, "filename": "nebulae-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1022a8fbd0e1ff8abd67b08000d38212", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 156830, "upload_time": "2020-10-21T10:06:47", "upload_time_iso_8601": "2020-10-21T10:06:47.996977Z", "url": "https://files.pythonhosted.org/packages/cd/7c/0ee7e5d26bea17db9f2d2d4cec149cc04fb327673a3289f3a3ca849448fb/nebulae-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18330bc38d33bf099676098e6f7a966c", "sha256": "54c7712e4088e2ee72fa7aca2c936768db8838738059356c5bfdb9bdd512aeee" }, "downloads": -1, "filename": "nebulae-0.4.0.tar.gz", "has_sig": false, "md5_digest": "18330bc38d33bf099676098e6f7a966c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48523, "upload_time": "2020-10-21T10:06:49", "upload_time_iso_8601": "2020-10-21T10:06:49.951036Z", "url": "https://files.pythonhosted.org/packages/40/0f/686af53ac7315dc236bc6413fb8065b216e7347aa931373b532bf648df62/nebulae-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "5597a6186e333dcb16cefcda39b198b5", "sha256": "cbe75cdae060b1ff09191d3a346a30cf81cbbb00c3de7ebb04e480904db5ea2a" }, "downloads": -1, "filename": "nebulae-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5597a6186e333dcb16cefcda39b198b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 157793, "upload_time": "2020-10-22T10:05:52", "upload_time_iso_8601": "2020-10-22T10:05:52.450792Z", "url": "https://files.pythonhosted.org/packages/be/66/092c2797535dc2d5db0eb14c73fd1839c481c3db3538ff99c18820268946/nebulae-0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60957505a5f73557eb9a42b48be249db", "sha256": "ab832e6aae041ef64e2396d594ba4afb3fd49a3c3ef10b76dab5e376cbf8382b" }, "downloads": -1, "filename": "nebulae-0.4.1.tar.gz", "has_sig": false, "md5_digest": "60957505a5f73557eb9a42b48be249db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49086, "upload_time": "2020-10-22T10:05:54", "upload_time_iso_8601": "2020-10-22T10:05:54.144131Z", "url": "https://files.pythonhosted.org/packages/15/10/ef62dc1beeb62bd5e9b565906499b178d971f770b6948c196ea1246ae35d/nebulae-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "14778f877a09c7090fc3a47db99e5548", "sha256": "35bb3c34b6f793992f169d59f1b39fe0185c76133fb552153b5c7c950a50aaee" }, "downloads": -1, "filename": "nebulae-0.4.11-py3-none-any.whl", "has_sig": false, "md5_digest": "14778f877a09c7090fc3a47db99e5548", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 183806, "upload_time": "2020-11-28T05:11:51", "upload_time_iso_8601": "2020-11-28T05:11:51.676029Z", "url": "https://files.pythonhosted.org/packages/b1/fb/105cabc09f7f831e200b736d1111712982b29189c61565c97d48307116d4/nebulae-0.4.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d4de76ba6531600cedc4097e3954c49", "sha256": "226d26a4e9b96e5c63a1f6b87b71267a2114840a431eede855904d8e8eb0f7a5" }, "downloads": -1, "filename": "nebulae-0.4.11.tar.gz", "has_sig": false, "md5_digest": "8d4de76ba6531600cedc4097e3954c49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57485, "upload_time": "2020-11-28T05:11:53", "upload_time_iso_8601": "2020-11-28T05:11:53.928988Z", "url": "https://files.pythonhosted.org/packages/3a/d7/f171de2b5b74205fc7e317ed34f83effc4fd0357e464eda01d4fe883e1f2/nebulae-0.4.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "f88b47c6379c2631769de80ef286edc4", "sha256": "b27466e2daa7a3c0965e315c017a18c417660944a7229e2542af66ed408fb455" }, "downloads": -1, "filename": "nebulae-0.4.12-py3-none-any.whl", "has_sig": false, "md5_digest": "f88b47c6379c2631769de80ef286edc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 184064, "upload_time": "2020-11-30T08:53:45", "upload_time_iso_8601": "2020-11-30T08:53:45.354638Z", "url": "https://files.pythonhosted.org/packages/69/d8/dcd057830998b934ce91ab52515cde822483f19e082424ddade8ae6f8c23/nebulae-0.4.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0402997a4d45fd40b582dab1627b6147", "sha256": "2b7137266a547f3c33206534c5956e845623e369a0c2a9964ad06b0e0753f71a" }, "downloads": -1, "filename": "nebulae-0.4.12.tar.gz", "has_sig": false, "md5_digest": "0402997a4d45fd40b582dab1627b6147", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57551, "upload_time": "2020-11-30T08:53:47", "upload_time_iso_8601": "2020-11-30T08:53:47.063928Z", "url": "https://files.pythonhosted.org/packages/a5/90/03f48ee4a895e53f18d1b6a9600187cb7a7465ff9a325add01e7f3ffb613/nebulae-0.4.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.13": [ { "comment_text": "", "digests": { "md5": "f4f42fb8bdf53945ef6d213b2833292d", "sha256": "efdc3b9e323462b9dae07c1e4c3128b3f2f46cd501a950894c3cf26a86de5ba7" }, "downloads": -1, "filename": "nebulae-0.4.13-py3-none-any.whl", "has_sig": false, "md5_digest": "f4f42fb8bdf53945ef6d213b2833292d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 184175, "upload_time": "2020-12-02T09:51:38", "upload_time_iso_8601": "2020-12-02T09:51:38.743231Z", "url": "https://files.pythonhosted.org/packages/d7/4f/a312227accadea0cc11c8b95b0aa4146eea1a157c790a2974808cce6e176/nebulae-0.4.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a30f2c2832b244576a4c5e915cec3e73", "sha256": "3a80c663442c31dc8793a4f339229d9a5eb95bda26a567fc7ed0f19628e44c89" }, "downloads": -1, "filename": "nebulae-0.4.13.tar.gz", "has_sig": false, "md5_digest": "a30f2c2832b244576a4c5e915cec3e73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57623, "upload_time": "2020-12-02T09:51:40", "upload_time_iso_8601": "2020-12-02T09:51:40.813107Z", "url": "https://files.pythonhosted.org/packages/69/d2/390bda3cc53fbc0e18b4e40685d8d5215b427f392490581f75b1d581ef4f/nebulae-0.4.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.14": [ { "comment_text": "", "digests": { "md5": "005f2a7cd2029f0ba83b5731cc52e370", "sha256": "68a3d3bf0acda9ad5ec4f934e493e287cc3da20d97d8c9eea44660930b7fb9b2" }, "downloads": -1, "filename": "nebulae-0.4.14-py3-none-any.whl", "has_sig": false, "md5_digest": "005f2a7cd2029f0ba83b5731cc52e370", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 183589, "upload_time": "2020-12-08T10:07:52", "upload_time_iso_8601": "2020-12-08T10:07:52.421172Z", "url": "https://files.pythonhosted.org/packages/c9/9d/19b3d4d9d823d6ad1cc07ddb34cc3d910e1fda8edaf303a58a12f300d25f/nebulae-0.4.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1803e602ff4355caf6980f2a3478afb9", "sha256": "bcea5d8775209614e80efd2ed27bcd564d2dcdc6078ff5862f3ed0047fe7c237" }, "downloads": -1, "filename": "nebulae-0.4.14.tar.gz", "has_sig": false, "md5_digest": "1803e602ff4355caf6980f2a3478afb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56949, "upload_time": "2020-12-08T10:07:54", "upload_time_iso_8601": "2020-12-08T10:07:54.269757Z", "url": "https://files.pythonhosted.org/packages/60/4e/9836453079c873e3cc993ccb348446425e77ebbc626dc6dc4cfc624ce634/nebulae-0.4.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.15": [ { "comment_text": "", "digests": { "md5": "034896d29521e8c08a8715363730f015", "sha256": "5da5df9afd49dc6dc1214ce971cdfeaa4a777707f81fed7a149736f5499bec91" }, "downloads": -1, "filename": "nebulae-0.4.15-py3-none-any.whl", "has_sig": false, "md5_digest": "034896d29521e8c08a8715363730f015", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 186684, "upload_time": "2020-12-14T07:28:22", "upload_time_iso_8601": "2020-12-14T07:28:22.147582Z", "url": "https://files.pythonhosted.org/packages/dc/55/378ca82ffe4c85960da1ab0d348ce6718da5652f0f85cbcf86fbcb676d88/nebulae-0.4.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce74d0f9552c6f8b46982b52cccabf57", "sha256": "3b44d98936628bddba1e421c66b354b9f3d84ae258ae97465d58a79047aa0218" }, "downloads": -1, "filename": "nebulae-0.4.15.tar.gz", "has_sig": false, "md5_digest": "ce74d0f9552c6f8b46982b52cccabf57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50573, "upload_time": "2020-12-14T07:28:26", "upload_time_iso_8601": "2020-12-14T07:28:26.342179Z", "url": "https://files.pythonhosted.org/packages/d6/5a/b33035e560aa87f8e55c5cf1fbde28ad6eb975935ad9000f22e596ee5ba8/nebulae-0.4.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.17": [ { "comment_text": "", "digests": { "md5": "c7a8c301bb1017da7f06b6b85faee71f", "sha256": "ae9dddaf68f03175c0749f06f46b5cb876f5de7570d1580d2b5f7470f3ba584d" }, "downloads": -1, "filename": "nebulae-0.4.17-py3-none-any.whl", "has_sig": false, "md5_digest": "c7a8c301bb1017da7f06b6b85faee71f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 188489, "upload_time": "2021-01-22T06:17:40", "upload_time_iso_8601": "2021-01-22T06:17:40.095347Z", "url": "https://files.pythonhosted.org/packages/9f/7a/b7f269a1db1935130e10d983d2992de69ed1caea53f2dfde927947d1debc/nebulae-0.4.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb6e23401c5868f5ade3c8b9e01cda60", "sha256": "7cb84f0240f1b5beec3d03522c94e2732f69a5c8e36b4698f9a3376a874d8f48" }, "downloads": -1, "filename": "nebulae-0.4.17.tar.gz", "has_sig": false, "md5_digest": "eb6e23401c5868f5ade3c8b9e01cda60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52722, "upload_time": "2021-01-22T06:17:42", "upload_time_iso_8601": "2021-01-22T06:17:42.034502Z", "url": "https://files.pythonhosted.org/packages/a8/cf/155ae7cfbcad2b9bed229e348791d8e447df6631ed425a50bdbeeff1fce3/nebulae-0.4.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.18": [ { "comment_text": "", "digests": { "md5": "8497f0c03299f0d707779ac0e2f2ee83", "sha256": "fc2a2e84656ecd1ea4de766a78b079598a8734c75db5bca5990bd6052ead94fd" }, "downloads": -1, "filename": "nebulae-0.4.18-py3-none-any.whl", "has_sig": false, "md5_digest": "8497f0c03299f0d707779ac0e2f2ee83", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 188625, "upload_time": "2021-01-22T07:47:36", "upload_time_iso_8601": "2021-01-22T07:47:36.882601Z", "url": "https://files.pythonhosted.org/packages/07/34/d5a0c3c60d28a07c0dc149e861560d52273bc09935f0146e74e4de09efac/nebulae-0.4.18-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e729472eee0af3954caee50b26a7dfa", "sha256": "e3bec28d7b8ee7fbcc8e8f89b89fd34a6a1db32d5f21ed486e3c52fb37fd021e" }, "downloads": -1, "filename": "nebulae-0.4.18.tar.gz", "has_sig": false, "md5_digest": "9e729472eee0af3954caee50b26a7dfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52890, "upload_time": "2021-01-22T07:47:38", "upload_time_iso_8601": "2021-01-22T07:47:38.400734Z", "url": "https://files.pythonhosted.org/packages/89/a0/bd96e46caa42b79fb81bb7cc68d810d4d839fad035afa21cc2f54a82b53b/nebulae-0.4.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.19": [ { "comment_text": "", "digests": { "md5": "3aeb8cfa960639f39b829a4b2a50a5e9", "sha256": "6b056ea591d0adc3119787f53a13e484743e8dc5a703d894e58fb3f72a364a93" }, "downloads": -1, "filename": "nebulae-0.4.19-py3-none-any.whl", "has_sig": false, "md5_digest": "3aeb8cfa960639f39b829a4b2a50a5e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 188761, "upload_time": "2021-01-26T09:38:43", "upload_time_iso_8601": "2021-01-26T09:38:43.870874Z", "url": "https://files.pythonhosted.org/packages/6f/74/cf03b581a5d2385e0de62cb99124fe0507c5bb43ae1facc754509db1639b/nebulae-0.4.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cf10b03daab982475cf67c7a4bb3ddf", "sha256": "2989a9911f1768df94f80154e2771883044fd924996236b2aad237f2b721c903" }, "downloads": -1, "filename": "nebulae-0.4.19.tar.gz", "has_sig": false, "md5_digest": "6cf10b03daab982475cf67c7a4bb3ddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52971, "upload_time": "2021-01-26T09:38:45", "upload_time_iso_8601": "2021-01-26T09:38:45.304196Z", "url": "https://files.pythonhosted.org/packages/f4/fb/51c3daa468aabb1f7c738fff4c54399155b22475f95a796ae29146990224/nebulae-0.4.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.20": [ { "comment_text": "", "digests": { "md5": "86f924cdd1a362bf16024d4a7056bf43", "sha256": "22590aa64ad30b5012e5f0118a29bfb63b525163aa61070aae259b381d7f1317" }, "downloads": -1, "filename": "nebulae-0.4.20-py3-none-any.whl", "has_sig": false, "md5_digest": "86f924cdd1a362bf16024d4a7056bf43", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 188775, "upload_time": "2021-01-27T01:34:44", "upload_time_iso_8601": "2021-01-27T01:34:44.806392Z", "url": "https://files.pythonhosted.org/packages/ea/1a/4ab5a6843c95d6309bb17ba925221fa2226176ffd21ff69a4c883fac4bd9/nebulae-0.4.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73c8fccab767b94a7058d8d674ea646b", "sha256": "03aa0f772fddadd4584823641d98753fdfacb3dc413aef2e8906202f864b37fa" }, "downloads": -1, "filename": "nebulae-0.4.20.tar.gz", "has_sig": false, "md5_digest": "73c8fccab767b94a7058d8d674ea646b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52991, "upload_time": "2021-01-27T01:34:46", "upload_time_iso_8601": "2021-01-27T01:34:46.325005Z", "url": "https://files.pythonhosted.org/packages/6e/c0/40548f7be98585c21e264e4bdd1f7e4b735f45d2db8b48342540c865f5ea/nebulae-0.4.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "e0cad66e66d1825aac31f87758530367", "sha256": "8989c7bec999afc2ad9eea83f7eda02aab8faec0776d9eb70f75d693102b791c" }, "downloads": -1, "filename": "nebulae-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e0cad66e66d1825aac31f87758530367", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 158254, "upload_time": "2020-10-26T03:18:47", "upload_time_iso_8601": "2020-10-26T03:18:47.561731Z", "url": "https://files.pythonhosted.org/packages/9e/ed/07382ec6c9c5b9d09ce0c1d39773dddedf2ae14377d8208f8a942a2665ee/nebulae-0.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e5b337f329b390dbc174692dbada24d", "sha256": "b091796ec7cd04f2f9cfbfbd93c377d435ccb5c0a6c8872a45e86495e23c9811" }, "downloads": -1, "filename": "nebulae-0.4.3.tar.gz", "has_sig": false, "md5_digest": "2e5b337f329b390dbc174692dbada24d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49601, "upload_time": "2020-10-26T03:18:49", "upload_time_iso_8601": "2020-10-26T03:18:49.012953Z", "url": "https://files.pythonhosted.org/packages/29/2b/38cfd849429d1919f8c43d84e2310bfe2ed6c6457104ec35521c367d002f/nebulae-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "2d01d181cee547d98be491b7cbe1c103", "sha256": "58925c1b801afdb9af972146a71bbb089fcd2ac92c2e8080f01c385d32a47a97" }, "downloads": -1, "filename": "nebulae-0.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2d01d181cee547d98be491b7cbe1c103", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 166936, "upload_time": "2020-11-17T07:20:23", "upload_time_iso_8601": "2020-11-17T07:20:23.961710Z", "url": "https://files.pythonhosted.org/packages/39/83/ab3315da5dd4a7f0e1a727bfae80bea1744825e4be651ddfee318455b3e0/nebulae-0.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d747fcf91800200e67362a177aef2fc", "sha256": "eae13d9c19134d5e9efbae506acba2acd1b5869f38a550065e4f97f32262e6bc" }, "downloads": -1, "filename": "nebulae-0.4.4.tar.gz", "has_sig": false, "md5_digest": "4d747fcf91800200e67362a177aef2fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54191, "upload_time": "2020-11-17T07:20:25", "upload_time_iso_8601": "2020-11-17T07:20:25.299763Z", "url": "https://files.pythonhosted.org/packages/00/84/e4ea1fbddf515d959e7a38572cadfddc97df6e22c9b85642dde112417199/nebulae-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "057fbcdfc41fcb2336513904450f6172", "sha256": "5110d891d13356ee917ce2612c9fb725cacd650052fae7b20e0ce0a4506c481c" }, "downloads": -1, "filename": "nebulae-0.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "057fbcdfc41fcb2336513904450f6172", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 179003, "upload_time": "2020-11-18T08:22:29", "upload_time_iso_8601": "2020-11-18T08:22:29.557261Z", "url": "https://files.pythonhosted.org/packages/37/1d/9334880d5b39081ee157defcf30f19614ce5ea11536e7b3e41588e0aa166/nebulae-0.4.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19682afff42ebb0a012321f124f4ab12", "sha256": "1e62ba76ede93f5193ae6d3473729b356224c5b9b4d1aa0ae7aee4e38e21982a" }, "downloads": -1, "filename": "nebulae-0.4.5.tar.gz", "has_sig": false, "md5_digest": "19682afff42ebb0a012321f124f4ab12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54514, "upload_time": "2020-11-18T08:22:32", "upload_time_iso_8601": "2020-11-18T08:22:32.528777Z", "url": "https://files.pythonhosted.org/packages/9f/37/b19aa32509920abbac48a1a89b3c7ae9434212cb52fba6e2c115beda9771/nebulae-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "21b294461fb8406819bc37b510ec30da", "sha256": "4ca14da8550b546cc63f1920da7776608884055007f94c1803cf87d179324bbc" }, "downloads": -1, "filename": "nebulae-0.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "21b294461fb8406819bc37b510ec30da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 179162, "upload_time": "2020-11-23T02:17:27", "upload_time_iso_8601": "2020-11-23T02:17:27.212979Z", "url": "https://files.pythonhosted.org/packages/5f/23/df31be0995ac5fcad16ecedb5bc818714e9880b47c23a96034b76c7136b7/nebulae-0.4.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2c5345acee2bf265e4c0e66f2e8d5cc", "sha256": "e928adce17389ea9f3deffa1e942ec3aa901ad1525752e3b3302367ec671fa3c" }, "downloads": -1, "filename": "nebulae-0.4.6.tar.gz", "has_sig": false, "md5_digest": "a2c5345acee2bf265e4c0e66f2e8d5cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54669, "upload_time": "2020-11-23T02:17:28", "upload_time_iso_8601": "2020-11-23T02:17:28.554926Z", "url": "https://files.pythonhosted.org/packages/9f/a7/d130a5675f76004cdce763bb24880d39d79454070282dd3d34aa02b489d3/nebulae-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "9bf22260b5d16955376bf4755caf1d69", "sha256": "7f4859a1f04556c09d3d49a61c52a7b3433609adedd375b979293e8f234f841d" }, "downloads": -1, "filename": "nebulae-0.4.7-py3-none-any.whl", "has_sig": false, "md5_digest": "9bf22260b5d16955376bf4755caf1d69", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 181305, "upload_time": "2020-11-23T10:26:41", "upload_time_iso_8601": "2020-11-23T10:26:41.888633Z", "url": "https://files.pythonhosted.org/packages/78/a7/4a7c75eff855a9b85d4a11edc319a3058d883b95e0cbd1f89215f982e15d/nebulae-0.4.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa616a3082a7b018d4d793e2a560c81e", "sha256": "0da6b6c0a735595b8d7fb054b1510c3c294fa4df5bfa17fe9cd4d36c8f6607ab" }, "downloads": -1, "filename": "nebulae-0.4.7.tar.gz", "has_sig": false, "md5_digest": "fa616a3082a7b018d4d793e2a560c81e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55499, "upload_time": "2020-11-23T10:26:43", "upload_time_iso_8601": "2020-11-23T10:26:43.488769Z", "url": "https://files.pythonhosted.org/packages/24/05/de52e27f0b5c80c6a5354397af66eb7df71d21db7f266d039109ab4fe219/nebulae-0.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "59a9a43f72b4003e490bd9f9cdd7382c", "sha256": "4aa5da52df29f184e0658024abb2685a8db1664005a6d2e9cd178c1f3aa83bce" }, "downloads": -1, "filename": "nebulae-0.4.8-py3-none-any.whl", "has_sig": false, "md5_digest": "59a9a43f72b4003e490bd9f9cdd7382c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 182818, "upload_time": "2020-11-25T02:42:22", "upload_time_iso_8601": "2020-11-25T02:42:22.429830Z", "url": "https://files.pythonhosted.org/packages/24/6e/2bf9465eadcf64707c5d7d1e70609ef77a06002c74cdb069b88c0a3c0e01/nebulae-0.4.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6364dca0e66b48b59b2c42ed6f9c9658", "sha256": "d3a445212ec5d70875c33934e6f6f56e4cd33c6b474f362fddf1e25cc9d1e6ee" }, "downloads": -1, "filename": "nebulae-0.4.8.tar.gz", "has_sig": false, "md5_digest": "6364dca0e66b48b59b2c42ed6f9c9658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56340, "upload_time": "2020-11-25T02:42:25", "upload_time_iso_8601": "2020-11-25T02:42:25.311635Z", "url": "https://files.pythonhosted.org/packages/48/23/18aad9cf98a175cfeb1202322c852aa6c603384ecd6f184d04bf6fd2ce37/nebulae-0.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "4e7d67b4c8e5b3b48e769ff14984b126", "sha256": "fa548491af2cf6ed6b48cb5c0d7baefde5e8c4b9b36c698d8f0428775081f398" }, "downloads": -1, "filename": "nebulae-0.4.9-py3-none-any.whl", "has_sig": false, "md5_digest": "4e7d67b4c8e5b3b48e769ff14984b126", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 182909, "upload_time": "2020-11-25T09:30:38", "upload_time_iso_8601": "2020-11-25T09:30:38.876249Z", "url": "https://files.pythonhosted.org/packages/1d/83/642660545c33f1282cb737ddb62d72639c5718733d76d7189ccf28148b36/nebulae-0.4.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a70c099d76e047dc072fdc266cd21b30", "sha256": "23dc8940e39a2c3863639ae94b6d312685fe6f924f9eca3cdb9a5a1f7ec9c3be" }, "downloads": -1, "filename": "nebulae-0.4.9.tar.gz", "has_sig": false, "md5_digest": "a70c099d76e047dc072fdc266cd21b30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56452, "upload_time": "2020-11-25T09:30:40", "upload_time_iso_8601": "2020-11-25T09:30:40.626731Z", "url": "https://files.pythonhosted.org/packages/75/b8/158e4ec71661d30bc871cce5f4c83fb5581d26c051270b919a484bb6cb32/nebulae-0.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "7cb3ce71568c413809925275e03fe34b", "sha256": "cd6c74187ef503f36d7752745c93f7655edfd5f131754aa536a64c447bbbcc2b" }, "downloads": -1, "filename": "nebulae-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7cb3ce71568c413809925275e03fe34b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 189029, "upload_time": "2021-01-27T09:09:47", "upload_time_iso_8601": "2021-01-27T09:09:47.607857Z", "url": "https://files.pythonhosted.org/packages/3e/ea/843680f6129aeda8f37f2b3a70c36fc6a9bd807bece2ad13be0d19e6d10d/nebulae-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "779766cf8cc2cd70e242c530ad1b0713", "sha256": "2ceab1f92be215a928f95854d54056e889b0e5b60a1563631f7bb9ddd5482dec" }, "downloads": -1, "filename": "nebulae-0.5.0.tar.gz", "has_sig": false, "md5_digest": "779766cf8cc2cd70e242c530ad1b0713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53310, "upload_time": "2021-01-27T09:09:49", "upload_time_iso_8601": "2021-01-27T09:09:49.233834Z", "url": "https://files.pythonhosted.org/packages/5e/22/09a0ca4eb11147bc6fe628970ba0da8652d94741c08ae536fdd3dd46ca06/nebulae-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0c3860cb871e3434feae33f8370f3ece", "sha256": "8c523440351ab742c4b6918b315a9a404a264b110a3618fe5ed0bd13756be440" }, "downloads": -1, "filename": "nebulae-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0c3860cb871e3434feae33f8370f3ece", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 190445, "upload_time": "2021-02-09T09:06:23", "upload_time_iso_8601": "2021-02-09T09:06:23.290040Z", "url": "https://files.pythonhosted.org/packages/e2/11/57164bb14670ac78949f77b7f7c8c811705c9b396ffa04e936fc7470eeaf/nebulae-0.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0df7dffc656349949b5d58921175a92d", "sha256": "bb741b42c090579e81425f3a9fa2ce52b2a58194fe7157af1d3fd087b11423c7" }, "downloads": -1, "filename": "nebulae-0.5.1.tar.gz", "has_sig": false, "md5_digest": "0df7dffc656349949b5d58921175a92d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54780, "upload_time": "2021-02-09T09:06:24", "upload_time_iso_8601": "2021-02-09T09:06:24.926431Z", "url": "https://files.pythonhosted.org/packages/ef/ef/6987a5787b92695ba0d73a6526588f2204969cbc5dcf7a1a57da1776a3c3/nebulae-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.10": [ { "comment_text": "", "digests": { "md5": "9db16c59ce948b40756a8978ca59f49f", "sha256": "1a1457877032865d43d68d631342227391fd50da6c9b9f2ae613fc80c25b5b50" }, "downloads": -1, "filename": "nebulae-0.5.10-py3-none-any.whl", "has_sig": false, "md5_digest": "9db16c59ce948b40756a8978ca59f49f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 205456, "upload_time": "2021-10-20T18:15:13", "upload_time_iso_8601": "2021-10-20T18:15:13.430287Z", "url": "https://files.pythonhosted.org/packages/27/66/d89ae6d8588cada1862900972e4bab527bae1adb016a7249e1541e6b42cb/nebulae-0.5.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49e93fe3e61c97ccbaf61d1a58e5a23d", "sha256": "bda32b98582f93d5df608f9f17e7943ef0310bfe7b2256630054dcdc76840735" }, "downloads": -1, "filename": "nebulae-0.5.10.tar.gz", "has_sig": false, "md5_digest": "49e93fe3e61c97ccbaf61d1a58e5a23d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68422, "upload_time": "2021-10-20T18:15:15", "upload_time_iso_8601": "2021-10-20T18:15:15.389069Z", "url": "https://files.pythonhosted.org/packages/3e/86/c329d9d5305bfe21e3a6694f70a4d04dd003efecd8ab2376ca6aea0f8ad9/nebulae-0.5.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.11": [ { "comment_text": "", "digests": { "md5": "cf6cab47d425373b18720b85d6197667", "sha256": "d49d0b2a83fa760aa4b6a0ca48949652dbb3b28fe01817a6d05a725ad7d22fab" }, "downloads": -1, "filename": "nebulae-0.5.11-py3-none-any.whl", "has_sig": false, "md5_digest": "cf6cab47d425373b18720b85d6197667", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 161308, "upload_time": "2021-12-16T04:30:25", "upload_time_iso_8601": "2021-12-16T04:30:25.875400Z", "url": "https://files.pythonhosted.org/packages/03/63/3a1c94079dbecc2b144df7c5a5b9bb3ca43c7903dee5af1caf7da3ec722e/nebulae-0.5.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2118bcf4b63f3e1f04446ca4c56817a", "sha256": "345831d960633fd976f1289726a43af83c6ca07ec939bc0bd21e824d90099032" }, "downloads": -1, "filename": "nebulae-0.5.11.tar.gz", "has_sig": false, "md5_digest": "b2118bcf4b63f3e1f04446ca4c56817a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69570, "upload_time": "2021-12-16T04:30:27", "upload_time_iso_8601": "2021-12-16T04:30:27.874833Z", "url": "https://files.pythonhosted.org/packages/b2/4f/e2d38d936ce46a8e9ca852cf3be9b0847df3c1fc5fc729fb8fdf01e2e87f/nebulae-0.5.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.12": [ { "comment_text": "", "digests": { "md5": "5d48ba0467ad52524fdac24210008d38", "sha256": "f22664b568f22b244dcd25aa082afc7d005d897b80f6dc9b9bf89568a9528a67" }, "downloads": -1, "filename": "nebulae-0.5.12-py3-none-any.whl", "has_sig": false, "md5_digest": "5d48ba0467ad52524fdac24210008d38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 106925, "upload_time": "2021-12-19T07:34:30", "upload_time_iso_8601": "2021-12-19T07:34:30.640199Z", "url": "https://files.pythonhosted.org/packages/f3/27/4387691e5326320e591448ad6e6a74d610a3e58e33d098df4e8e4599c51a/nebulae-0.5.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "012f7b58f2350a72ede34b17cd2b47d7", "sha256": "3170078389010a34f354d5da76625442f9ea67a6d78f055746dc4c161f2341f1" }, "downloads": -1, "filename": "nebulae-0.5.12.tar.gz", "has_sig": false, "md5_digest": "012f7b58f2350a72ede34b17cd2b47d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70302, "upload_time": "2021-12-19T07:34:32", "upload_time_iso_8601": "2021-12-19T07:34:32.585683Z", "url": "https://files.pythonhosted.org/packages/4b/4e/ae4168b4cfef8629b566e8854b91daeeb75cc3c789351a09526812bc233d/nebulae-0.5.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.13": [ { "comment_text": "", "digests": { "md5": "af88dcfb3d6c42194dc7b95965854800", "sha256": "70c85059ac4cf57d8b1819857f303568a8ad9933ade8f90fca9f8619f6ea1763" }, "downloads": -1, "filename": "nebulae-0.5.13-py3-none-any.whl", "has_sig": false, "md5_digest": "af88dcfb3d6c42194dc7b95965854800", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93623, "upload_time": "2021-12-26T05:28:23", "upload_time_iso_8601": "2021-12-26T05:28:23.271996Z", "url": "https://files.pythonhosted.org/packages/05/fb/e21ca434223f7f889ae46a3ec9cbb01d73279c9ad40df5d0011f39c91fd5/nebulae-0.5.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "587f7749cf5e386c1c8ec3d63576b3f6", "sha256": "33077a8cf016a5ccfa913c4bd90df3e640c225b0ea188cb86d573155a1058469" }, "downloads": -1, "filename": "nebulae-0.5.13.tar.gz", "has_sig": false, "md5_digest": "587f7749cf5e386c1c8ec3d63576b3f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70556, "upload_time": "2021-12-26T05:28:27", "upload_time_iso_8601": "2021-12-26T05:28:27.079894Z", "url": "https://files.pythonhosted.org/packages/96/06/305f466c8a9d7d83e4263dd0b055834790561ab0570ab0b9c4526a575ec7/nebulae-0.5.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.14": [ { "comment_text": "", "digests": { "md5": "ef7ccf6bb4c498c80380183ca61a68ee", "sha256": "4d1d2252d148748cd6742c1a873ffa3edf9dbae19518e2cf4a5312b65db52db9" }, "downloads": -1, "filename": "nebulae-0.5.14-py3-none-any.whl", "has_sig": false, "md5_digest": "ef7ccf6bb4c498c80380183ca61a68ee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93729, "upload_time": "2022-01-24T08:27:51", "upload_time_iso_8601": "2022-01-24T08:27:51.415952Z", "url": "https://files.pythonhosted.org/packages/d7/a3/74c188c550b7cb18b59e86d3cf537fcf766fe8b3d6fff5ce5ed693ec88b9/nebulae-0.5.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cc2821622443c7c2cc98a6fb8998e45", "sha256": "65fb4eb414c31304fb5ddb84601fdaa6c951a2dcb740d772d0b15bd6b24c4e75" }, "downloads": -1, "filename": "nebulae-0.5.14.tar.gz", "has_sig": false, "md5_digest": "0cc2821622443c7c2cc98a6fb8998e45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70693, "upload_time": "2022-01-24T08:27:54", "upload_time_iso_8601": "2022-01-24T08:27:54.264721Z", "url": "https://files.pythonhosted.org/packages/3e/6b/75ddb1ff023ea0a11580a97804447b8fe5a5784c7575b375db8a94c9b71d/nebulae-0.5.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.15": [ { "comment_text": "", "digests": { "md5": "899b24a8fa356330e7cf4716af43289f", "sha256": "d7a802dd00f4c9db8f212bb2986d5ca667db1d41e2d9b18507d15a96bf364373" }, "downloads": -1, "filename": "nebulae-0.5.15-py3-none-any.whl", "has_sig": false, "md5_digest": "899b24a8fa356330e7cf4716af43289f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94529, "upload_time": "2022-01-29T03:22:36", "upload_time_iso_8601": "2022-01-29T03:22:36.204353Z", "url": "https://files.pythonhosted.org/packages/39/4e/33769a3585fd72c5cec7847e82d76af03aa2b28ec8e41484eb540224ba1d/nebulae-0.5.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b4336b37fedcedb9e74d6cd95519056", "sha256": "28ef59ce941159955e40ef37d2941c1f9ce8b7b8f8088e4dbb5c6ac70d09e12d" }, "downloads": -1, "filename": "nebulae-0.5.15.tar.gz", "has_sig": false, "md5_digest": "6b4336b37fedcedb9e74d6cd95519056", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71552, "upload_time": "2022-01-29T03:22:39", "upload_time_iso_8601": "2022-01-29T03:22:39.142706Z", "url": "https://files.pythonhosted.org/packages/20/d3/a28df951fa9fd0820dd32543c42c88924e103107a8cf0916a32097752359/nebulae-0.5.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.16": [ { "comment_text": "", "digests": { "md5": "955fab3315068e61a294d28d66ad1610", "sha256": "3c5399a314a6b634f11c909fdfc4bdb83f07ac537df0beed7f91234818145bd5" }, "downloads": -1, "filename": "nebulae-0.5.16-py3-none-any.whl", "has_sig": false, "md5_digest": "955fab3315068e61a294d28d66ad1610", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94968, "upload_time": "2022-02-21T13:04:37", "upload_time_iso_8601": "2022-02-21T13:04:37.429424Z", "url": "https://files.pythonhosted.org/packages/a9/68/f668f43f6935454cba37359b6bcaf5f60c90aea08faadff336bea814d40f/nebulae-0.5.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee7d6eeb4b83e70cef4606e2b751eaa8", "sha256": "b71516d049ec35675537895fbff1b0960442309f5d5bb82b42bd1a40b08edac0" }, "downloads": -1, "filename": "nebulae-0.5.16.tar.gz", "has_sig": false, "md5_digest": "ee7d6eeb4b83e70cef4606e2b751eaa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72041, "upload_time": "2022-02-21T13:04:39", "upload_time_iso_8601": "2022-02-21T13:04:39.922371Z", "url": "https://files.pythonhosted.org/packages/f1/6f/7153d323bc6b8bd7d00a1d8fd947732e83cae2c6d0a9e271ed262fe74ca9/nebulae-0.5.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.17": [ { "comment_text": "", "digests": { "md5": "d98893bccd5472a52d0449113422bf22", "sha256": "0508ffc1ffa7517f5beae62ae1d93666aeacace82017ff5e8e9e463598b20b9a" }, "downloads": -1, "filename": "nebulae-0.5.17-py3-none-any.whl", "has_sig": false, "md5_digest": "d98893bccd5472a52d0449113422bf22", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94933, "upload_time": "2022-02-25T02:57:40", "upload_time_iso_8601": "2022-02-25T02:57:40.345587Z", "url": "https://files.pythonhosted.org/packages/a6/f8/eb4e81749859cfba973279c79cc2092eaf8f61cb2f8b599ad2df2a838c7b/nebulae-0.5.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89e07502afaa645c3e85766be3b63d4e", "sha256": "196c3c0d5f94b2278f3c70039de0ad1d313c5b1fa83ac854711ae549315233e3" }, "downloads": -1, "filename": "nebulae-0.5.17.tar.gz", "has_sig": false, "md5_digest": "89e07502afaa645c3e85766be3b63d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71998, "upload_time": "2022-02-25T02:57:51", "upload_time_iso_8601": "2022-02-25T02:57:51.499722Z", "url": "https://files.pythonhosted.org/packages/ef/43/2156dcc6304c07c5e31712ad558de50226cdf74bf4f676ad0da088a35b4c/nebulae-0.5.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.18": [ { "comment_text": "", "digests": { "md5": "951b640b0ea8acf9e5e96adfacb618a6", "sha256": "9ddd31a20fff81317fa98bfe58cddca8119325b73866d48a4b8cdda128aa94ee" }, "downloads": -1, "filename": "nebulae-0.5.18-py3-none-any.whl", "has_sig": false, "md5_digest": "951b640b0ea8acf9e5e96adfacb618a6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95395, "upload_time": "2022-03-08T12:30:55", "upload_time_iso_8601": "2022-03-08T12:30:55.191704Z", "url": "https://files.pythonhosted.org/packages/c0/eb/2e3e1c2260a7c7dc1566f15375e54704c3aae31aaf71cd90c11ef76219b1/nebulae-0.5.18-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a46b7e2a4c75c31460d774d16092dbe5", "sha256": "a9ea6c1e6a0cc1ab5a819d14cdef6263be6cbe37e32a94f8b7047cf03f02a212" }, "downloads": -1, "filename": "nebulae-0.5.18.tar.gz", "has_sig": false, "md5_digest": "a46b7e2a4c75c31460d774d16092dbe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72426, "upload_time": "2022-03-08T12:31:00", "upload_time_iso_8601": "2022-03-08T12:31:00.008685Z", "url": "https://files.pythonhosted.org/packages/52/fc/34c699f56ca00fd20928ab0e645ae2fecbf6976005d59bcbe4ec189381b8/nebulae-0.5.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.19": [ { "comment_text": "", "digests": { "md5": "d1ca3a2390c45b9be157d9db2c366498", "sha256": "eacf1c24562416efea237ac1f4d3387b9b0f774355db8085fd751de80bab79f7" }, "downloads": -1, "filename": "nebulae-0.5.19-py3-none-any.whl", "has_sig": false, "md5_digest": "d1ca3a2390c45b9be157d9db2c366498", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95408, "upload_time": "2022-03-09T11:38:01", "upload_time_iso_8601": "2022-03-09T11:38:01.925227Z", "url": "https://files.pythonhosted.org/packages/28/d4/d1bdf19165fe213643841851c7c33541637e2512244f275f70763c64d9c5/nebulae-0.5.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b229b819550dab4f7e8c9d714a1146c4", "sha256": "360bdeb5095f33b78e40c436eacc32459069d7cc665139ed465ae914c2a6007c" }, "downloads": -1, "filename": "nebulae-0.5.19.tar.gz", "has_sig": false, "md5_digest": "b229b819550dab4f7e8c9d714a1146c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72430, "upload_time": "2022-03-09T11:38:04", "upload_time_iso_8601": "2022-03-09T11:38:04.569986Z", "url": "https://files.pythonhosted.org/packages/dd/16/b332dd54067f8e67fa5524c4bbe06644553ef699974afa28ede0a42da6d0/nebulae-0.5.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "8ea04243070bc176f883632adae5fb1a", "sha256": "c26cd1acef1650756147709b614041aaba28d7fe1ca58059f56797de1f469d75" }, "downloads": -1, "filename": "nebulae-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8ea04243070bc176f883632adae5fb1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 198094, "upload_time": "2021-05-27T08:39:04", "upload_time_iso_8601": "2021-05-27T08:39:04.429998Z", "url": "https://files.pythonhosted.org/packages/7a/3f/ca05f526ff2916623bf4044209daec3bc28a96ee004c008d6c95cd9f1724/nebulae-0.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef15f378b1b1ee914a1c7d6294c4fcc5", "sha256": "b3f078db242f0597df24c154bf9625b57a4aa6719dccdd6c4943ccc4b8b278ad" }, "downloads": -1, "filename": "nebulae-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ef15f378b1b1ee914a1c7d6294c4fcc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63928, "upload_time": "2021-05-27T08:39:06", "upload_time_iso_8601": "2021-05-27T08:39:06.117163Z", "url": "https://files.pythonhosted.org/packages/40/e0/70b1b792e53c625fb64dc5a905c1f3ef77e9411245e287103951b8ae170a/nebulae-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.20": [ { "comment_text": "", "digests": { "md5": "1070b6f9d195c4bb23931b349fbc8dac", "sha256": "26653d6caea8039dd5d82eb2b3c0b818db7fd929f2391b46065b2666b22a5844" }, "downloads": -1, "filename": "nebulae-0.5.20-py3-none-any.whl", "has_sig": false, "md5_digest": "1070b6f9d195c4bb23931b349fbc8dac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95479, "upload_time": "2022-03-10T08:27:45", "upload_time_iso_8601": "2022-03-10T08:27:45.196962Z", "url": "https://files.pythonhosted.org/packages/7b/57/c75fcf852a6978aed4a0463dc1f4b3285bc9bc1af15d7060a7f96f1d89a8/nebulae-0.5.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6c1977b4c6b18002b7fa055d60ada45", "sha256": "e6751b9c68e59cc1b09360ca28fb4cb9ce874e846a3da07f95d0e586fae4665b" }, "downloads": -1, "filename": "nebulae-0.5.20.tar.gz", "has_sig": false, "md5_digest": "d6c1977b4c6b18002b7fa055d60ada45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72527, "upload_time": "2022-03-10T08:27:48", "upload_time_iso_8601": "2022-03-10T08:27:48.104740Z", "url": "https://files.pythonhosted.org/packages/40/52/a541d3217739b215be446f68fbdffb8a4e6b6273da5654ce448c362cfcec/nebulae-0.5.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.21": [ { "comment_text": "", "digests": { "md5": "5a14db7dd189b6305ef06d25e3c2b116", "sha256": "d606ab80d6d32141d034fbcb7e8df2b35fea665059d799fd050e7ab01d9a39a4" }, "downloads": -1, "filename": "nebulae-0.5.21-py3-none-any.whl", "has_sig": false, "md5_digest": "5a14db7dd189b6305ef06d25e3c2b116", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95577, "upload_time": "2022-03-10T13:11:36", "upload_time_iso_8601": "2022-03-10T13:11:36.579111Z", "url": "https://files.pythonhosted.org/packages/51/4a/6db6a28b2b47da3e7eb48faf0d06880c716846ad2beb450aed0da8ee6fd7/nebulae-0.5.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e22aa7b064bafd66eca65f60f7e8e8", "sha256": "1e2612a72eace9037ce39692451338ba9bbffc2511bd0748e27cb39b57a8b9c7" }, "downloads": -1, "filename": "nebulae-0.5.21.tar.gz", "has_sig": false, "md5_digest": "08e22aa7b064bafd66eca65f60f7e8e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72683, "upload_time": "2022-03-10T13:11:40", "upload_time_iso_8601": "2022-03-10T13:11:40.119971Z", "url": "https://files.pythonhosted.org/packages/61/41/09afdd37b37c498f9f26df3a03f0b736fc7a2aabfec5295589085a56ece5/nebulae-0.5.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.22": [ { "comment_text": "", "digests": { "md5": "83264f7725c037bc2345b758ca9690cc", "sha256": "0cb3ca33b6874c9849721da4477a80d2f7635f841e00a8446b02af4d4b689aa7" }, "downloads": -1, "filename": "nebulae-0.5.22-py3-none-any.whl", "has_sig": false, "md5_digest": "83264f7725c037bc2345b758ca9690cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95563, "upload_time": "2022-03-11T03:27:44", "upload_time_iso_8601": "2022-03-11T03:27:44.252871Z", "url": "https://files.pythonhosted.org/packages/94/d8/144d3f60072654e80a0e770fd300bec203130b2444454e6e79b5508c0e3b/nebulae-0.5.22-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cd11589540910d81c45e61c7b2b838b", "sha256": "a819775e6b48fd9f86f104e1ba995a1abb4bae4a43f28f7de360d8269679baa7" }, "downloads": -1, "filename": "nebulae-0.5.22.tar.gz", "has_sig": false, "md5_digest": "0cd11589540910d81c45e61c7b2b838b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72713, "upload_time": "2022-03-11T03:27:46", "upload_time_iso_8601": "2022-03-11T03:27:46.677941Z", "url": "https://files.pythonhosted.org/packages/b8/68/d2e2b4267da01540c16ead2f8b50a58671c3a7520c5f15588f8635963a68/nebulae-0.5.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.23": [ { "comment_text": "", "digests": { "md5": "feccf5df122e2b5198d5c8d584fff4c3", "sha256": "0b028bfcc62383aa83a2ebc8115fa5397d5a56e9cd2e0e2f9f7de18e83acc618" }, "downloads": -1, "filename": "nebulae-0.5.23-py3-none-any.whl", "has_sig": false, "md5_digest": "feccf5df122e2b5198d5c8d584fff4c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95591, "upload_time": "2022-03-14T10:21:10", "upload_time_iso_8601": "2022-03-14T10:21:10.801661Z", "url": "https://files.pythonhosted.org/packages/f2/f3/2096bd894c88e55a441261e89c52fcf8da6ea69f1b071cea99523ae51fee/nebulae-0.5.23-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d569bc02508d84c7823809294f48cb4a", "sha256": "c58668b571b6f8f5beb505612c4a4db7979ba57859006e61fdddfd83b22c7c62" }, "downloads": -1, "filename": "nebulae-0.5.23.tar.gz", "has_sig": false, "md5_digest": "d569bc02508d84c7823809294f48cb4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72769, "upload_time": "2022-03-14T10:21:27", "upload_time_iso_8601": "2022-03-14T10:21:27.153057Z", "url": "https://files.pythonhosted.org/packages/65/7f/7e0cfffb5d0a63632ee33bf4908af16c2f2bd93f6d6f151950d236867f9c/nebulae-0.5.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.24": [ { "comment_text": "", "digests": { "md5": "3d6cf16742c768c04be6c4da157a2e8a", "sha256": "c8f639b2dab93b80562addeb84c09d6574cf281fa286583c7656147cff47f0f0" }, "downloads": -1, "filename": "nebulae-0.5.24-py3-none-any.whl", "has_sig": false, "md5_digest": "3d6cf16742c768c04be6c4da157a2e8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96214, "upload_time": "2022-04-04T07:38:43", "upload_time_iso_8601": "2022-04-04T07:38:43.712892Z", "url": "https://files.pythonhosted.org/packages/2d/ed/0bcdb82909e381feffa0dc624e2934fe2b534e8375cba787a0e34f11fb50/nebulae-0.5.24-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b87fef268d777acbe5d2ff4e08f8429", "sha256": "8395f7d48ed8a08611ed4b4a2481369cb5c0fdc9ce5569130470b1b970a57656" }, "downloads": -1, "filename": "nebulae-0.5.24.tar.gz", "has_sig": false, "md5_digest": "9b87fef268d777acbe5d2ff4e08f8429", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73445, "upload_time": "2022-04-04T07:38:46", "upload_time_iso_8601": "2022-04-04T07:38:46.296203Z", "url": "https://files.pythonhosted.org/packages/56/4d/e6574d045dc25b74889af2967f93d29722ea928888080a8139a659e38d4b/nebulae-0.5.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.25": [ { "comment_text": "", "digests": { "md5": "6466e2fffb29fd400419271233238a21", "sha256": "d58856ead3252c9d6bf22c3ec1b93b1a67d129cb01b2ec0e668964e22ee223ff" }, "downloads": -1, "filename": "nebulae-0.5.25-py3-none-any.whl", "has_sig": false, "md5_digest": "6466e2fffb29fd400419271233238a21", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96318, "upload_time": "2022-04-06T04:21:59", "upload_time_iso_8601": "2022-04-06T04:21:59.403075Z", "url": "https://files.pythonhosted.org/packages/52/2a/5faccc84b22b06eaea8bf3cdab4940310a63441e214177d26f1c87e2f8c6/nebulae-0.5.25-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a35d233a41eb5fe03f8ef522ac24d90", "sha256": "5edce1021471378534f3f97f6deb5335b42423359f0f48f6e08ff99f01e2a388" }, "downloads": -1, "filename": "nebulae-0.5.25.tar.gz", "has_sig": false, "md5_digest": "3a35d233a41eb5fe03f8ef522ac24d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73561, "upload_time": "2022-04-06T04:22:01", "upload_time_iso_8601": "2022-04-06T04:22:01.563771Z", "url": "https://files.pythonhosted.org/packages/8c/53/8aa770e24f21378611d1a9a6f23684896170d83e18b8394d3b491f449f62/nebulae-0.5.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.26": [ { "comment_text": "", "digests": { "md5": "86fb94ebcfcdbfbb869caf92a8683a7c", "sha256": "2b13b06f53215015e0504903cf787839b3e023f1d81dcd17b45beeb4cfd95f99" }, "downloads": -1, "filename": "nebulae-0.5.26-py3-none-any.whl", "has_sig": false, "md5_digest": "86fb94ebcfcdbfbb869caf92a8683a7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97439, "upload_time": "2022-05-10T08:45:51", "upload_time_iso_8601": "2022-05-10T08:45:51.057512Z", "url": "https://files.pythonhosted.org/packages/78/0e/999414efe4a60c42134b09a3b3cae627c784a7feafd2f1bb407b59bc9b87/nebulae-0.5.26-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4611cf62dcf1a78a90b9df3acd99ebd3", "sha256": "56c7445c979741e66719f7e7d1651773dc2ada4e20839ea26e27f4b26390a3fa" }, "downloads": -1, "filename": "nebulae-0.5.26.tar.gz", "has_sig": false, "md5_digest": "4611cf62dcf1a78a90b9df3acd99ebd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74689, "upload_time": "2022-05-10T08:45:53", "upload_time_iso_8601": "2022-05-10T08:45:53.676887Z", "url": "https://files.pythonhosted.org/packages/37/aa/aa5c5161069e72b2bd2195d1a7ea58400ed0902f35953fde73647d0565f9/nebulae-0.5.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.27": [ { "comment_text": "", "digests": { "md5": "262bb89ab9830d97b51c2feeb7b07f17", "sha256": "e6fbdee1f112cfcf45d1f5472e1f6ae2dbe38559a48b1a475f6230eeb0f52ae1" }, "downloads": -1, "filename": "nebulae-0.5.27-py3-none-any.whl", "has_sig": false, "md5_digest": "262bb89ab9830d97b51c2feeb7b07f17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97442, "upload_time": "2022-05-16T04:39:20", "upload_time_iso_8601": "2022-05-16T04:39:20.639474Z", "url": "https://files.pythonhosted.org/packages/64/48/1876cb2ed4bc71f027382d2dd82c9b14c6f283550ceffcf123e3d1e4ed5c/nebulae-0.5.27-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cab23f527c581c727824ffad6b65cc4", "sha256": "06c9580c50fd0c1105899ca592e83cca64ac19ef99a7c88c0d036e37e394785e" }, "downloads": -1, "filename": "nebulae-0.5.27.tar.gz", "has_sig": false, "md5_digest": "5cab23f527c581c727824ffad6b65cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74720, "upload_time": "2022-05-16T04:39:23", "upload_time_iso_8601": "2022-05-16T04:39:23.330577Z", "url": "https://files.pythonhosted.org/packages/c6/64/c0016018423acbe133116ed8f5cc7f852b77d4b38ad3d281fc1682b68128/nebulae-0.5.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "6c552e5c289e5141fe3938d43d764ec6", "sha256": "be61e05ba1dfdaee472bbe83e604df221b32037f3c80ad5dd0b8c0bbca298ca6" }, "downloads": -1, "filename": "nebulae-0.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6c552e5c289e5141fe3938d43d764ec6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 199804, "upload_time": "2021-08-02T07:51:49", "upload_time_iso_8601": "2021-08-02T07:51:49.651798Z", "url": "https://files.pythonhosted.org/packages/72/11/d6a8fdfbf457353c30c4adf3394983def36f0735e608c3da93ef146feb4e/nebulae-0.5.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6803982d961ac4ff47d5c0becfa037d5", "sha256": "efa79c1196f23d41081ebd3786e0fff0e46d8810fced10c6879324a9eb25cb90" }, "downloads": -1, "filename": "nebulae-0.5.4.tar.gz", "has_sig": false, "md5_digest": "6803982d961ac4ff47d5c0becfa037d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65268, "upload_time": "2021-08-02T07:51:51", "upload_time_iso_8601": "2021-08-02T07:51:51.698739Z", "url": "https://files.pythonhosted.org/packages/c8/b9/8b7cc556329519ef8175cb59566039d2f90ce791b01815b3bed75fb9ef2b/nebulae-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "7674d82f6fa531679f41035e25a2d5fd", "sha256": "88b4186d8074ceb7c3e994a9b649822e4502266e4a774c3181feca50d3bd3565" }, "downloads": -1, "filename": "nebulae-0.5.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7674d82f6fa531679f41035e25a2d5fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 199827, "upload_time": "2021-08-10T09:24:53", "upload_time_iso_8601": "2021-08-10T09:24:53.515608Z", "url": "https://files.pythonhosted.org/packages/fa/60/d5c07ff0958b143bb3d800e887110b3978d91ffe04859b698f76ec3de6b1/nebulae-0.5.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "341af421fc137849ed024e077932e4c2", "sha256": "52a26956c01f14368091a07f12ba84fd3155e97dfba9a53fb9e365c17b92ec3f" }, "downloads": -1, "filename": "nebulae-0.5.5.tar.gz", "has_sig": false, "md5_digest": "341af421fc137849ed024e077932e4c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65305, "upload_time": "2021-08-10T09:24:56", "upload_time_iso_8601": "2021-08-10T09:24:56.483380Z", "url": "https://files.pythonhosted.org/packages/52/12/0ce23f9dc0b73900c733915e4eaa1ee6422ba0924e8a3980303720a5ba64/nebulae-0.5.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "1c285c1742093063a9f584ba6a23d516", "sha256": "5031c54008704f3f87f89ac2f0003cc7902198a9b19b2a593eed4188f461397f" }, "downloads": -1, "filename": "nebulae-0.5.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1c285c1742093063a9f584ba6a23d516", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 200969, "upload_time": "2021-09-14T08:33:33", "upload_time_iso_8601": "2021-09-14T08:33:33.658260Z", "url": "https://files.pythonhosted.org/packages/0f/76/5e50f0cd803ed9e522bd18f6822b1afc57d7c63995056f554dfa15ffa3ec/nebulae-0.5.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f0d1a9164fc8864ff8a6fb59d792032", "sha256": "16784afbf607d2c8a96a0857d799ae2bb5280b225f73da2c9d9f0c995b5f810a" }, "downloads": -1, "filename": "nebulae-0.5.6.tar.gz", "has_sig": false, "md5_digest": "7f0d1a9164fc8864ff8a6fb59d792032", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66326, "upload_time": "2021-09-14T08:33:36", "upload_time_iso_8601": "2021-09-14T08:33:36.113397Z", "url": "https://files.pythonhosted.org/packages/af/1b/957d72407922401776cae5fa7be5ee344bcb2462be776c6121ae9d0f3ad1/nebulae-0.5.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "ed593e3171fe167c8c7f750cd4e51b1f", "sha256": "89235f24b7f6ba4a9a327d5917b5cc127cb350ab3aabe80c8d28fba0504e9a24" }, "downloads": -1, "filename": "nebulae-0.5.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ed593e3171fe167c8c7f750cd4e51b1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 204221, "upload_time": "2021-09-15T13:48:12", "upload_time_iso_8601": "2021-09-15T13:48:12.026877Z", "url": "https://files.pythonhosted.org/packages/26/62/7f914aaf23d0460edce09066ef8840392a941dfd3c2860b74d22985ecc2b/nebulae-0.5.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d410a93ce706008f8f768e65187f8e4", "sha256": "f6133219d16ae9d37c60b6670505ce2892f8445e2e8e24136cbe0df914455621" }, "downloads": -1, "filename": "nebulae-0.5.7.tar.gz", "has_sig": false, "md5_digest": "0d410a93ce706008f8f768e65187f8e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66837, "upload_time": "2021-09-15T13:48:14", "upload_time_iso_8601": "2021-09-15T13:48:14.622045Z", "url": "https://files.pythonhosted.org/packages/4f/79/11c43a5105926afe6e03d5ec805c671500808c3dac50b8988040b74481af/nebulae-0.5.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "e3e445fcbe696e3895bde154551db132", "sha256": "656df8839398aa32786e40ccc55309d3d6c24d1215aeec43e16342c4c9f43565" }, "downloads": -1, "filename": "nebulae-0.5.8-py3-none-any.whl", "has_sig": false, "md5_digest": "e3e445fcbe696e3895bde154551db132", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 204571, "upload_time": "2021-09-16T08:56:16", "upload_time_iso_8601": "2021-09-16T08:56:16.777855Z", "url": "https://files.pythonhosted.org/packages/92/35/ac08c0887f7b9f43583baa896c9292b46cb1788b5561783f3c37ffc2162f/nebulae-0.5.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7089f6a1b530cf19324c524c3c6b7ca", "sha256": "ffd83f1fd1844ab12cee6462f1237c027fe537262cc4869a8c8766ac01498760" }, "downloads": -1, "filename": "nebulae-0.5.8.tar.gz", "has_sig": false, "md5_digest": "e7089f6a1b530cf19324c524c3c6b7ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67172, "upload_time": "2021-09-16T08:56:21", "upload_time_iso_8601": "2021-09-16T08:56:21.011784Z", "url": "https://files.pythonhosted.org/packages/b5/b5/dcf477befd5e4993c5018be3085ef55f196d60679a8febc1497736ca5ae2/nebulae-0.5.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "b0475ac6cd6b7df13ee5971ecc9f9a4c", "sha256": "b762bc17fdef7f770a23572505afe5ca9fbd8bb567758ae7be466f9a8f7e4244" }, "downloads": -1, "filename": "nebulae-0.5.9-py3-none-any.whl", "has_sig": false, "md5_digest": "b0475ac6cd6b7df13ee5971ecc9f9a4c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 205471, "upload_time": "2021-09-25T09:38:36", "upload_time_iso_8601": "2021-09-25T09:38:36.456607Z", "url": "https://files.pythonhosted.org/packages/40/1d/02c159c5690bcdbfdb47ed7793e6b72e0efefe73ab9d2c046458010df9c3/nebulae-0.5.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b28ce56180ab5404db1c9d86491be600", "sha256": "bcf9443af292ef4018731e8a0cc3cbe439202ee8f4bed29757b352f28fb814e6" }, "downloads": -1, "filename": "nebulae-0.5.9.tar.gz", "has_sig": false, "md5_digest": "b28ce56180ab5404db1c9d86491be600", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68429, "upload_time": "2021-09-25T09:38:38", "upload_time_iso_8601": "2021-09-25T09:38:38.868745Z", "url": "https://files.pythonhosted.org/packages/47/ec/43a7cb1b721428513b2e0ea369c9623ba38584ed6e3684fba892e185c836/nebulae-0.5.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "262bb89ab9830d97b51c2feeb7b07f17", "sha256": "e6fbdee1f112cfcf45d1f5472e1f6ae2dbe38559a48b1a475f6230eeb0f52ae1" }, "downloads": -1, "filename": "nebulae-0.5.27-py3-none-any.whl", "has_sig": false, "md5_digest": "262bb89ab9830d97b51c2feeb7b07f17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97442, "upload_time": "2022-05-16T04:39:20", "upload_time_iso_8601": "2022-05-16T04:39:20.639474Z", "url": "https://files.pythonhosted.org/packages/64/48/1876cb2ed4bc71f027382d2dd82c9b14c6f283550ceffcf123e3d1e4ed5c/nebulae-0.5.27-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cab23f527c581c727824ffad6b65cc4", "sha256": "06c9580c50fd0c1105899ca592e83cca64ac19ef99a7c88c0d036e37e394785e" }, "downloads": -1, "filename": "nebulae-0.5.27.tar.gz", "has_sig": false, "md5_digest": "5cab23f527c581c727824ffad6b65cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74720, "upload_time": "2022-05-16T04:39:23", "upload_time_iso_8601": "2022-05-16T04:39:23.330577Z", "url": "https://files.pythonhosted.org/packages/c6/64/c0016018423acbe133116ed8f5cc7f852b77d4b38ad3d281fc1682b68128/nebulae-0.5.27.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }