npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-daburupy-task

v0.0.7

Published

This is a generator for a basic python Luigi task project.

Downloads

17

Readme

generator-daburupy-click

daburupy-task a Yeoman generator for a basic python Luigi task project that includes pytest, Sphinx, a Makefile and a few other standard pieces to get your project going.

It also includes a using Click application you can use to run your task if you need to do so.

If you haven't used yeoman templates before, take a look at the Getting Started with Yeoman article on the project page.

Get ready, get set...

Install npm

If you haven't already installed npm, you'll need to do that first.

One pretty easy way to install npm and node is with nvm. If you want to go this route, use curl to kick off the install script:

curl https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash

At the time of this writing, 0.3.88 was the current version, but it may well have changed since then. Go to the Github project page to find the latest release.

After installing, you'll need to close and reopen your terminal, or run the following command:

source ~/.bashrc

You can then verify that nvm installed correctly by running the following command:

nvm --version

Lastly, just install node.

nvm install node

Install yeoman

If you haven't already installed Yeoman, perform the following steps:

npm install -g yo

Install bower

If you haven't already installed Bower, perform the following steps:

npm install -g bower

Install the daburupy-task Generator

npm install -g generator-daburupy-task

Create Your Project

From a command prompt go into the directory in which you'd love to start your new python project and execute the template generator.

cd /my/target/directory
yo daburupy-task

The generator will ask you a few questions and, based on your answers, generate your new project.

Project Files

The new project will contain a couple of files that we describe briefly in this section.

cli.py

This is a Click command-line application you can use to run your task, or submit it to a running instance of the Luigi daemon, also known as luigid. You can also modify it as your project develops.

tasks.py

This is the module that contains the task that was created when you generated the project.

luigi.cfg

This is a sample Lugi configuration file that you can ship with your library.

Next Steps

Once the project skeleton has been generated, you can use the Makefile to create your virtual environment.

make venv

Now that you have a virtual environment, go ahead and activate it.

source venv/bin/activate

At this point, you can install the project's required modules, run the example test and generate the project's Sphinx documentation.

make install
make test
make docs

Build and Run the Application

This template includes some starter code for your Click application, and you should be able to build and run it at this point.

To install the application into your virtual environment, you can use the Makefile.

make build

At this point, you should have an executable that is the same as your project's name. To verify it's good to go, run it with the --help flag.

<my-project-name> --help

Start Coding

If everything else went well, you can start coding your project.