Skip to main content

🔥 Cannlytics = cannabis + analytics. Data pipelines, user interfaces, and the best statistics in the game. Made with ❤️!

Project description

Simple, easy, cannabis analytics.

https://cannlytics.com

License: MIT Version PyPI download month

🔥Cannlytics is a set of useful tools to get (wrangle), curate, augment, analyze, archive, and market cannabis data. The mission of Cannlytics is to help cannabis data be accessible, simply, easily, and for everyone. From seed to sale and beyond, Cannlytics can help you organize, analyze, and profit from your cannabis data. The cannlytics package is extensive and you are welcome to use any and all of the components that you find useful.

🚀 Installation

You can install the Cannlytics engine from PyPI.

pip install cannlytics

You can also simply clone the repository to get your hands on the Cannlytics source code.

git clone https://github.com/cannlytics/cannlytics.git

You can get the nightly development build by cloning the dev branch of the repository. The dev branch is not stable for production, but has the latest and greatest tools that we're working tirelessly to deliver to you shortly.

git clone -b dev https://github.com/cannlytics/cannlytics.git

🗝️ Authentication

Cannlytics leverages 🔥Firebase by default for data storage, file storage, and authentication. Use of Firebase is entirely optional and you are welcome to use your favorite database and backend services. If you choose to use Firebase, then you will need to provide credentials for your application by setting a GOOGLE_APPLICATION_CREDENTIALS environment variable that points to your service account credentials. For more information on adding authentication to your app, see the cannlytics.firebase documentation.

📡 Data

The cannlytics.data module is a large toolbox for accessing, collecting, cleaning, augmenting, standardizing, saving, and analyzing cannabis data. See the cannlytics.data documentation for more information on how to manage your cannabis data.

CoAs

Certificates of analysis (CoAs) are abundant for cultivators, processors, retailers, and consumers too, but the data is often locked away. Rich, valuable laboratory data so close, yet so far away! CoADoc puts these vital data points in your hands by parsing PDFs and URLs, finding all the data, standardizing the data, and cleanly returning the data to you. You can read more about using CoADoc in the cannlytics.data.coas documentation.

Market

Welcome to the Cannabis Data Market and Algorithm Farm, firsts of their kind. The idea is that algorithms and data can be published, purchased, and consumed in a decentralized manner as NFTs, through smart contracts, empowering both algorithm and data suppliers and consumers. It's a win-win mechanism that potentially millions can make a good living from creating, curating, and consuming data and algorithms in the cannabis space. Please feel free to begin to share any initial ideas, questions, comments, etc. and join in on the fun as we populate the first cannabis-specific data NFT and algorithm NFT marketplace. You can read more about using the data market in the cannlytics.data.market documentation.

🔥 Firebase

The cannlytics.firebase module is a wrapper of the firebase_admin package to make interacting with Firebase services, such as Firestore databases and Firebase Storage buckets, even easier. For more information, see the cannlytics.firebase documentation.

⚗️ LIMS

The cannlytics.lims.instruments submodule provides tools to collect data generated by scientific instruments typically used by analytical labs that test cannabis. You can see the cannlytics.lims documentation to see how to automatically collect results from your scientific instruments.

🛡️ Metrc

Cannlytics supports Metrc out-of-the-box. You can use the cannlytics.metrc module to securely interface with the Metrc API and perform all operations needed for compliance. Simply plug in your vendor and user API keys, specify your state of operations, and you're off to the races.

from cannlytics import metrc

# Initialize a Metrc API client.
track = metrc.authorize(
    'your-vendor-api-key',
    'your-user-api-key',
    primary_license='your-user-license-number',
    state='ca',
)

Producer / processor workflow:

# Get a plant by it's ID.
plant = track.get_plants(uid='123')

# Change the growth phase from vegetative to flowering.
plant.flower(tag='your-plant-tag')

# Move the flowering plant to a new room.
plant.move(location_name='The Flower Room')

# Manicure useable cannabis from the flowering plant.
plant.manicure(harvest_name='Old-Time Moonshine', weight=4.20)

# Harvest the flowering plant.
plant.harvest(harvest_name='Old-Time Moonshine', weight=420)

Lab workflow:

# Post lab results.
track.post_lab_results([{...}, {...}])

# Get a tested package.
test_package = track.get_packages(label='abc')

# Get the tested package's lab result.
lab_results = track.get_lab_results(uid=test_package.id)

Retail workflow:

# Get a retail package.
package = track.get_packages(label='abc')

# Create a sales receipts.
track.create_receipts([{...}, {...}])

# Get recent receipts.
sales = track.get_receipts(action='active', start='2021-04-20')

# Update the sales receipt.
sale = track.get_receipts(uid='420')
sale.total_price = 25
sale.update()

📈 Statistics

The cannlytics.stats submodule contains a number of functions for estimating, saving, and using statistical models. You can read more about the statistical tools in the cannlytics.stats documentation.

🏛️ License

Copyright (c) 2021-2022 Cannlytics and The Cannabis Data Science Team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Please cite the following if you use the code examples in your research:

@misc{cannlytics2022,
  title={Cannabis Data Science},
  author={Skeate, Keegan and Rice, Charles and O'Sullivan-Sutherland, Candace},
  journal={https://github.com/cannlytics/cannabis-data-science},
  year={2022}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cannlytics-0.0.12.tar.gz (177.9 kB view hashes)

Uploaded Source

Built Distribution

cannlytics-0.0.12-py3-none-any.whl (216.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page