Metadata-Version: 2.1
Name: fast-neptune
Version: 0.0.1
Summary: NeptuneML wrapper to quickly record data about experiments
Home-page: https://github.com/DanyWind/fast_neptune
Author: Daniel Huynh
Author-email: daniel.quoc.huynh@gmail.com
License: Apache Software License 2.0
Keywords: netpuneml experiments
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: psutil
Requires-Dist: neptune-client
Requires-Dist: nbdev
Requires-Dist: fastai

# Project name here
> Summary description here.


This file will become your README and also the index of your documentation.

## Install

`pip install your_project_name`

## How to use

Fill me in please! Don't forget code examples:

```python
# Neptune login
from neptune.sessions import Session
import getpass

api_token = getpass.getpass("Please enter your NeptuneML API token : ")
session = Session(api_token=api_token)
project = session.get_project(project_qualified_name='danywin/fast-neptune')
```

    Please enter your NeptuneML API token :


    WARNING: Instantiating Session without specifying a backend is deprecated and will be removed in future versions. For current behaviour use `neptune.init(...)` or `Session.with_default_backend(...)
    WARNING: It is not secure to place API token in your source code. You should treat it as a password to your account. It is strongly recommended to use NEPTUNE_API_TOKEN environment variable instead. Remember not to upload source file with API token to any public repository.


```python
name = "MNIST-example"
description = "Demonstration of fast_neptune on MNIST using fastai"
```


