Here's how GITHUB.COM makes money* and how much!

*Please read our disclaimer before using our estimates.
Loading...

GITHUB . COM {}

Detected CMS Systems:

  1. Analyzed Page
  2. Matching Content Categories
  3. CMS
  4. Monthly Traffic Estimate
  5. How Does Github.com Make Money
  6. How Much Does Github.com Make
  7. Wordpress Themes And Plugins
  8. Keywords
  9. Topics
  10. Payment Methods
  11. Questions
  12. Schema
  13. External Links
  14. Analytics And Tracking
  15. Libraries
  16. Hosting Providers

We are analyzing https://github.com/pypa/pipenv/issues/3148.

Title:
pipenv install -e . fails due to dependency resolution for packages installed through direct URL · Issue #3148 · pypa/pipenv
Description:
Issue description The title may be a bit confusing, thus I hope description will be clearer. My packages section of Pipfile is as follows: [packages] prometheus-client = "*" uberlogging = {file = "https://github.com/haizaar/uberlogging/a...
Website Age:
17 years and 8 months (reg. 2007-10-09).

Matching Content Categories {📚}

  • Games
  • Video & Online Content
  • Technology & Computing

Content Management System {📝}

What CMS is github.com built with?


Github.com is based on WORDPRESS.

Traffic Estimate {📈}

What is the average monthly size of github.com audience?

🚀🌠 Tremendous Traffic: 10M - 20M visitors per month


Based on our best estimate, this website will receive around 10,000,019 visitors per month in the current month.
However, some sources were not loaded, we suggest to reload the page to get complete results.

check SE Ranking
check Ahrefs
check Similarweb
check Ubersuggest
check Semrush

How Does Github.com Make Money? {💸}


Subscription Packages {💳}

We've located a dedicated page on github.com that might include details about subscription plans or recurring payments. We identified it based on the word pricing in one of its internal links. Below, you'll find additional estimates for its monthly recurring revenues.

How Much Does Github.com Make? {💰}


Subscription Packages {💳}

Prices on github.com are in US Dollars ($). They range from $4.00/month to $21.00/month.
We estimate that the site has approximately 4,989,889 paying customers.
The estimated monthly recurring revenue (MRR) is $20,957,532.
The estimated annual recurring revenues (ARR) are $251,490,385.

Wordpress Themes and Plugins {🎨}

What WordPress theme does this site use?

It is strange but we were not able to detect any theme on the page.

What WordPress plugins does this website use?

It is strange but we were not able to detect any plugins on the page.

Keywords {🔍}

pipenv, satisfied, requirement, skipping, upgrade, homelibpythonsitepackages, install, haizaar, foo, issue, dependency, packages, installed, techalchemy, commented, resolution, url, pip, uberloggingfoo, direct, works, author, fails, uberlogging, privatepkg, version, dependencies, sign, due, fine, setuppy, setuptools, setup, installing, lock, projects, closed, description, section, pipfile, prometheusclient, file, dev, find, matches, bug, configmanagerprivatepkgfoo, found, successfully, devpackages,

Topics {✒️}

///home/haizaar/dev/healthshield/channeler requirement /haizaar/uberlogging/archive/v0 haizaar edits author /org/private_pkg/archive/v0 python-json-logger successfully uninstalled foo-0 pipenv install https pipenv install works org/simple reachable enhancement proposal end game vision assigned labels category private modules installed [dev-packages]… pipfile finding packages generally pre-release dependency ssh config file comment metadata assignees pipenv install pip install installing collected packages setuptools import find_packages similar error hope description haizaar changed [packages] prometheus-client = install_requires-ed packages url install projects existing issue package installed direct url pip sees vendor pip status resolve dependencies packages installed issue describes issue requires issue btw packages=find_packages resulting installation prometheus-client versions found simple reproduction dependency resolution packages section 6/site-packages matches uberlogging dependency cache

Payment Methods {📊}

  • Braintree

Questions {❓}

  • Already have an account?
  • Can we reopen it in a meanwhile?
  • Have you had a chance to look at my last comment where I show that it's actually not related to credentials and affects any package installed by direct URL?
  • If it works in pip it should work with pipenv as well, right?
  • Org/simple reachable?

Schema {🗺️}

DiscussionForumPosting:
      context:https://schema.org
      headline:pipenv install -e . fails due to dependency resolution for packages installed through direct URL
      articleBody:### Issue description The title may be a bit confusing, thus I hope description will be clearer. My `packages` section of Pipfile is as follows: ```ini [packages] prometheus-client = "*" uberlogging = {file = "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz"} private_pkg = {file = "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz"} ``` `pipenv install` passes fine, but then I try to do `pipenv install --dev -e .` with the following `setup.py`: ```python from setuptools import find_packages, setup setup( name="foo", version="0.0.1", url="https://github.com/...", packages=find_packages(), install_requires=( "prometheus-client", "uberlogging", "private_pkg", ) ) ``` **it fails with** `Could not find a version that matches private_pkg`, though `private_pkg` is listed in the *satisfied* requirements below. `pip install -e .` works just fine in pipenv's venv and the resulting installation is functional. Bug? ``` $ pipenv install --dev -e . Installing -e .… Obtaining file:///home/haizaar/dev/healthshield/channeler Requirement already satisfied, skipping upgrade: prometheus-client in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.4.2) Requirement already satisfied, skipping upgrade: uberlogging in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.0.2) Requirement already satisfied, skipping upgrade: private_pkg in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.1.0) Requirement already satisfied, skipping upgrade: python-json-logger in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (0.1.9) Requirement already satisfied, skipping upgrade: humanfriendly in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (4.17) Requirement already satisfied, skipping upgrade: structlog in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (18.2.0) Requirement already satisfied, skipping upgrade: coloredlogs in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (10.0) Requirement already satisfied, skipping upgrade: pyyaml in /home/.../lib/python3.6/site-packages (from private_pkg->foo==0.0.1) (3.13) Requirement already satisfied, skipping upgrade: configmanager in /home/.../lib/python3.6/site-packages (from private_pkg->foo==0.0.1) (1.34.1) Requirement already satisfied, skipping upgrade: setuptools in /home/.../lib/python3.6/site-packages (from python-json-logger->uberlogging->foo==0.0.1) (40.5.0) Requirement already satisfied, skipping upgrade: six in /home/.../lib/python3.6/site-packages (from structlog->uberlogging->foo==0.0.1) (1.11.0) Requirement already satisfied, skipping upgrade: configparser==3.5.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (3.5.0) Requirement already satisfied, skipping upgrade: future==0.16.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (0.16.0) Requirement already satisfied, skipping upgrade: hookery==1.4.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (1.4.0) Requirement already satisfied, skipping upgrade: funcsigs in /home/.../lib/python3.6/site-packages (from hookery==1.4.0->configmanager->private_pkg->foo==0.0.1) (1.0.2) Installing collected packages: foo Found existing installation: foo 0.0.1 Uninstalling foo-0.0.1: Successfully uninstalled foo-0.0.1 Running setup.py develop for foo Successfully installed foo Adding foo to Pipfile's [dev-packages]… Pipfile.lock (68f562) out of date, updating to (4f417c)… Locking [dev-packages] dependencies… Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies. First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again. Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation. Hint: try $ pipenv lock --pre if it is a pre-release dependency. Could not find a version that matches private_pkg No versions found Was https://pypi.org/simple reachable? ``` ------------------------------------------------------------------------------- <details><summary>$ pipenv --support</summary> Pipenv version: `'2018.10.13'` Pipenv location: `'/home/.../.local/lib/python3.6/site-packages/pipenv'` Python location: `'/usr/bin/python3.6'` Python installations found: - `3.7.0`: `/usr/bin/python3.7` - `3.7.0`: `/usr/bin/python3.7m` - `3.6.6`: `/home/.../bin/python3.6` - `3.6.6`: `/usr/bin/python3.6` - `3.6.6`: `/usr/bin/python3.6m` - `3.5.2`: `/usr/bin/python3.5` - `3.5.2`: `/usr/bin/python3.5m` - `2.7.12`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.6.6', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '4.15.0-36-generic', 'platform_system': 'Linux', 'platform_version': '#39~16.04.1-Ubuntu SMP Tue Sep 25 08:59:23 UTC 2018', 'python_full_version': '3.6.6', 'python_version': '3.6', 'sys_platform': 'linux'} ``` System environment variables: - `LC_PAPER` - `XDG_VTNR` - `XDG_SESSION_ID` - `LC_ADDRESS` - `CLUTTER_IM_MODULE` - `LC_MONETARY` - `XDG_GREETER_DATA_DIR` - `VIRTUALENVWRAPPER_SCRIPT` - `VIRTUALENVWRAPPER_PROJECT_FILENAME` - `SESSION` - `GPG_AGENT_INFO` - `PIP_PYTHON_PATH` - `SHELL` - `VTE_VERSION` - `TERM` - `QT_LINUX_ACCESSIBILITY_ALWAYS_ON` - `DIRENV_DIR` - `LC_NUMERIC` - `WINDOWID` - `GNOME_KEYRING_CONTROL` - `UPSTART_SESSION` - `GTK_MODULES` - `USER` - `QT_ACCESSIBILITY` - `LC_TELEPHONE` - `LS_COLORS` - `UNITY_HAS_3D_SUPPORT` - `XDG_SESSION_PATH` - `XDG_SEAT_PATH` - `SSH_AUTH_SOCK` - `DEFAULTS_PATH` - `VIRTUAL_ENV` - `WORKON_HOME` - `DIRENV_WATCHES` - `UNITY_DEFAULT_PROFILE` - `XDG_CONFIG_DIRS` - `PIPENV_ACTIVE` - `PATH` - `DESKTOP_SESSION` - `QT_QPA_PLATFORMTHEME` - `QT_IM_MODULE` - `VIRTUALENVWRAPPER_HOOK_DIR` - `LC_IDENTIFICATION` - `JOB` - `PWD` - `XDG_SESSION_TYPE` - `XMODIFIERS` - `LANG` - `GNOME_KEYRING_PID` - `MANDATORY_PATH` - `GDM_LANG` - `LC_MEASUREMENT` - `NODE_PATH` - `IM_CONFIG_PHASE` - `COMPIZ_CONFIG_PROFILE` - `PS1` - `PYTHONDONTWRITEBYTECODE` - `PAPERSIZE` - `GDMSESSION` - `GTK2_MODULES` - `SESSIONTYPE` - `GITAWAREPROMPT` - `XDG_SEAT` - `HOME` - `SHLVL` - `LANGUAGE` - `_VIRTUALENVWRAPPER_API` - `GNOME_DESKTOP_SESSION_ID` - `UPSTART_INSTANCE` - `PIP_SHIMS_BASE_MODULE` - `LOGNAME` - `UPSTART_EVENTS` - `XDG_SESSION_DESKTOP` - `PYTHONPATH` - `GITHUB_RO_TOKEN` - `COMPIZ_BIN_PATH` - `QT4_IM_MODULE` - `XDG_DATA_DIRS` - `DBUS_SESSION_BUS_ADDRESS` - `LESSOPEN` - `UPSTART_JOB` - `INSTANCE` - `DISPLAY` - `XDG_RUNTIME_DIR` - `GTK_IM_MODULE` - `XDG_CURRENT_DESKTOP` - `DIRENV_DIFF` - `LC_TIME` - `LESSCLOSE` - `XAUTHORITY` - `LC_NAME` - `_` Pipenv–specific environment variables: - `PIPENV_ACTIVE`: `1` Debug–specific environment variables: - `SHELL`: `/bin/bash` - `LANG`: `en_US.UTF-8` --------------------------- Contents of `Pipfile` ('/home/.../Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] prometheus-client = "*" uberlogging = {file = "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz"} private_pkg = {file = "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz"} [dev-packages] medium = {editable = true, path = "."} [requires] python_version = "3.6" ``` Contents of `Pipfile.lock` ('/home/.../Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "ae2ceeae45ac82d25d2563ac6b7d421babd5dda5437a4f0c35fddc78be4f417c" }, "pipfile-spec": 6, "requires": { "python_version": "3.6" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true } ] }, "default": { "private_pkg: { "file": "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz" }, "prometheus-client": { "hashes": [ "sha256:046cb4fffe75e55ff0e6dfd18e2ea16e54d86cc330f369bebcc683475c8b68a9" ], "index": "pypi", "version": "==0.4.2" }, "uberlogging": { "file": "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz" } }, "develop": {} } ``` </details>
      author:
         url:https://github.com/haizaar
         type:Person
         name:haizaar
      datePublished:2018-11-02T15:47:54.000Z
      interactionStatistic:
         type:InteractionCounter
         interactionType:https://schema.org/CommentAction
         userInteractionCount:19
      url:https://github.com/3148/pipenv/issues/3148
      context:https://schema.org
      headline:pipenv install -e . fails due to dependency resolution for packages installed through direct URL
      articleBody:### Issue description The title may be a bit confusing, thus I hope description will be clearer. My `packages` section of Pipfile is as follows: ```ini [packages] prometheus-client = "*" uberlogging = {file = "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz"} private_pkg = {file = "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz"} ``` `pipenv install` passes fine, but then I try to do `pipenv install --dev -e .` with the following `setup.py`: ```python from setuptools import find_packages, setup setup( name="foo", version="0.0.1", url="https://github.com/...", packages=find_packages(), install_requires=( "prometheus-client", "uberlogging", "private_pkg", ) ) ``` **it fails with** `Could not find a version that matches private_pkg`, though `private_pkg` is listed in the *satisfied* requirements below. `pip install -e .` works just fine in pipenv's venv and the resulting installation is functional. Bug? ``` $ pipenv install --dev -e . Installing -e .… Obtaining file:///home/haizaar/dev/healthshield/channeler Requirement already satisfied, skipping upgrade: prometheus-client in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.4.2) Requirement already satisfied, skipping upgrade: uberlogging in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.0.2) Requirement already satisfied, skipping upgrade: private_pkg in /home/.../lib/python3.6/site-packages (from foo==0.0.1) (0.1.0) Requirement already satisfied, skipping upgrade: python-json-logger in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (0.1.9) Requirement already satisfied, skipping upgrade: humanfriendly in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (4.17) Requirement already satisfied, skipping upgrade: structlog in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (18.2.0) Requirement already satisfied, skipping upgrade: coloredlogs in /home/.../lib/python3.6/site-packages (from uberlogging->foo==0.0.1) (10.0) Requirement already satisfied, skipping upgrade: pyyaml in /home/.../lib/python3.6/site-packages (from private_pkg->foo==0.0.1) (3.13) Requirement already satisfied, skipping upgrade: configmanager in /home/.../lib/python3.6/site-packages (from private_pkg->foo==0.0.1) (1.34.1) Requirement already satisfied, skipping upgrade: setuptools in /home/.../lib/python3.6/site-packages (from python-json-logger->uberlogging->foo==0.0.1) (40.5.0) Requirement already satisfied, skipping upgrade: six in /home/.../lib/python3.6/site-packages (from structlog->uberlogging->foo==0.0.1) (1.11.0) Requirement already satisfied, skipping upgrade: configparser==3.5.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (3.5.0) Requirement already satisfied, skipping upgrade: future==0.16.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (0.16.0) Requirement already satisfied, skipping upgrade: hookery==1.4.0 in /home/.../lib/python3.6/site-packages (from configmanager->private_pkg->foo==0.0.1) (1.4.0) Requirement already satisfied, skipping upgrade: funcsigs in /home/.../lib/python3.6/site-packages (from hookery==1.4.0->configmanager->private_pkg->foo==0.0.1) (1.0.2) Installing collected packages: foo Found existing installation: foo 0.0.1 Uninstalling foo-0.0.1: Successfully uninstalled foo-0.0.1 Running setup.py develop for foo Successfully installed foo Adding foo to Pipfile's [dev-packages]… Pipfile.lock (68f562) out of date, updating to (4f417c)… Locking [dev-packages] dependencies… Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies. First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again. Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation. Hint: try $ pipenv lock --pre if it is a pre-release dependency. Could not find a version that matches private_pkg No versions found Was https://pypi.org/simple reachable? ``` ------------------------------------------------------------------------------- <details><summary>$ pipenv --support</summary> Pipenv version: `'2018.10.13'` Pipenv location: `'/home/.../.local/lib/python3.6/site-packages/pipenv'` Python location: `'/usr/bin/python3.6'` Python installations found: - `3.7.0`: `/usr/bin/python3.7` - `3.7.0`: `/usr/bin/python3.7m` - `3.6.6`: `/home/.../bin/python3.6` - `3.6.6`: `/usr/bin/python3.6` - `3.6.6`: `/usr/bin/python3.6m` - `3.5.2`: `/usr/bin/python3.5` - `3.5.2`: `/usr/bin/python3.5m` - `2.7.12`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.6.6', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '4.15.0-36-generic', 'platform_system': 'Linux', 'platform_version': '#39~16.04.1-Ubuntu SMP Tue Sep 25 08:59:23 UTC 2018', 'python_full_version': '3.6.6', 'python_version': '3.6', 'sys_platform': 'linux'} ``` System environment variables: - `LC_PAPER` - `XDG_VTNR` - `XDG_SESSION_ID` - `LC_ADDRESS` - `CLUTTER_IM_MODULE` - `LC_MONETARY` - `XDG_GREETER_DATA_DIR` - `VIRTUALENVWRAPPER_SCRIPT` - `VIRTUALENVWRAPPER_PROJECT_FILENAME` - `SESSION` - `GPG_AGENT_INFO` - `PIP_PYTHON_PATH` - `SHELL` - `VTE_VERSION` - `TERM` - `QT_LINUX_ACCESSIBILITY_ALWAYS_ON` - `DIRENV_DIR` - `LC_NUMERIC` - `WINDOWID` - `GNOME_KEYRING_CONTROL` - `UPSTART_SESSION` - `GTK_MODULES` - `USER` - `QT_ACCESSIBILITY` - `LC_TELEPHONE` - `LS_COLORS` - `UNITY_HAS_3D_SUPPORT` - `XDG_SESSION_PATH` - `XDG_SEAT_PATH` - `SSH_AUTH_SOCK` - `DEFAULTS_PATH` - `VIRTUAL_ENV` - `WORKON_HOME` - `DIRENV_WATCHES` - `UNITY_DEFAULT_PROFILE` - `XDG_CONFIG_DIRS` - `PIPENV_ACTIVE` - `PATH` - `DESKTOP_SESSION` - `QT_QPA_PLATFORMTHEME` - `QT_IM_MODULE` - `VIRTUALENVWRAPPER_HOOK_DIR` - `LC_IDENTIFICATION` - `JOB` - `PWD` - `XDG_SESSION_TYPE` - `XMODIFIERS` - `LANG` - `GNOME_KEYRING_PID` - `MANDATORY_PATH` - `GDM_LANG` - `LC_MEASUREMENT` - `NODE_PATH` - `IM_CONFIG_PHASE` - `COMPIZ_CONFIG_PROFILE` - `PS1` - `PYTHONDONTWRITEBYTECODE` - `PAPERSIZE` - `GDMSESSION` - `GTK2_MODULES` - `SESSIONTYPE` - `GITAWAREPROMPT` - `XDG_SEAT` - `HOME` - `SHLVL` - `LANGUAGE` - `_VIRTUALENVWRAPPER_API` - `GNOME_DESKTOP_SESSION_ID` - `UPSTART_INSTANCE` - `PIP_SHIMS_BASE_MODULE` - `LOGNAME` - `UPSTART_EVENTS` - `XDG_SESSION_DESKTOP` - `PYTHONPATH` - `GITHUB_RO_TOKEN` - `COMPIZ_BIN_PATH` - `QT4_IM_MODULE` - `XDG_DATA_DIRS` - `DBUS_SESSION_BUS_ADDRESS` - `LESSOPEN` - `UPSTART_JOB` - `INSTANCE` - `DISPLAY` - `XDG_RUNTIME_DIR` - `GTK_IM_MODULE` - `XDG_CURRENT_DESKTOP` - `DIRENV_DIFF` - `LC_TIME` - `LESSCLOSE` - `XAUTHORITY` - `LC_NAME` - `_` Pipenv–specific environment variables: - `PIPENV_ACTIVE`: `1` Debug–specific environment variables: - `SHELL`: `/bin/bash` - `LANG`: `en_US.UTF-8` --------------------------- Contents of `Pipfile` ('/home/.../Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] prometheus-client = "*" uberlogging = {file = "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz"} private_pkg = {file = "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz"} [dev-packages] medium = {editable = true, path = "."} [requires] python_version = "3.6" ``` Contents of `Pipfile.lock` ('/home/.../Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "ae2ceeae45ac82d25d2563ac6b7d421babd5dda5437a4f0c35fddc78be4f417c" }, "pipfile-spec": 6, "requires": { "python_version": "3.6" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true } ] }, "default": { "private_pkg: { "file": "https://${GITHUB_RO_TOKEN}:@github.com/Org/private_pkg/archive/v0.1.0.tar.gz" }, "prometheus-client": { "hashes": [ "sha256:046cb4fffe75e55ff0e6dfd18e2ea16e54d86cc330f369bebcc683475c8b68a9" ], "index": "pypi", "version": "==0.4.2" }, "uberlogging": { "file": "https://github.com/haizaar/uberlogging/archive/v0.0.2.tar.gz" } }, "develop": {} } ``` </details>
      author:
         url:https://github.com/haizaar
         type:Person
         name:haizaar
      datePublished:2018-11-02T15:47:54.000Z
      interactionStatistic:
         type:InteractionCounter
         interactionType:https://schema.org/CommentAction
         userInteractionCount:19
      url:https://github.com/3148/pipenv/issues/3148
Person:
      url:https://github.com/haizaar
      name:haizaar
      url:https://github.com/haizaar
      name:haizaar
InteractionCounter:
      interactionType:https://schema.org/CommentAction
      userInteractionCount:19
      interactionType:https://schema.org/CommentAction
      userInteractionCount:19

External Links {🔗}(12)

Analytics and Tracking {📊}

  • Site Verification - Google

Libraries {📚}

  • Clipboard.js
  • D3.js
  • Lodash

Emails and Hosting {✉️}

Mail Servers:

  • aspmx.l.google.com
  • alt1.aspmx.l.google.com
  • alt2.aspmx.l.google.com
  • alt3.aspmx.l.google.com
  • alt4.aspmx.l.google.com

Name Servers:

  • dns1.p08.nsone.net
  • dns2.p08.nsone.net
  • dns3.p08.nsone.net
  • dns4.p08.nsone.net
  • ns-1283.awsdns-32.org
  • ns-1707.awsdns-21.co.uk
  • ns-421.awsdns-52.com
  • ns-520.awsdns-01.net
8.59s.