Skip to main content

macOS Automated Package Manager

Project description

:Platform:
OS X Yosemite, OS X El Capitan, macOS Sierra
macOS High Sierra, macOS Mojave
:Language: Python (version ≥ 3.4)
:Environment: Console | Terminal

==========================================
MacDaily - macOS Automated Package Manager
==========================================

|download| |version| |status| |format|

|python| |implementation|

- `About <#about>`__
- `Installation <#installation>`__
- `Configuration <#configuration>`__
- `Usage Manual <#usage-manual>`__

- `Start-Up <#start-up>`__
- `Commands <#commands>`__
- `Generals <#generals>`__

- `Troubleshooting <#troubleshooting>`__
- `TODO <#todo>`__

--------------

About
-----

Package day-care manager on macOS.

**MacDaily** is an all-in-one collection of console utility written in Python
with support of `PTY <https://en.wikipedia.org/wiki/Pseudo_terminal>`__.
Originally works as an automated housekeeper for Mac to update all packages
outdated, **MacDaily** is now fully functioned and end-user oriented.

**MacDaily** can manage packages of various distributions of
`Atom <https://atom.io>`__, `RubyGems <https://rubygems.org>`__,
`Homebrew <https://brew.sh>`__, `Python <https://pypy.org>`__,
`Node.js <https://nodejs.org>`__, and even macOS software updates (c.f.
``softwareupdate(8)``). Without being aware of everything about your Mac, one
can easily work around and manage packages out of no pain using **MacDaily**.

Installation
------------

NB
MacDaily runs only with support of Python from version **3.4**
or higher. And it shall only work ideally on **macOS**.

.. raw:: html

<h4>
<a name="brew">
MacDaily is now <code>brew</code>able 🍺
</a>
</h4>

Though not introduced to
`Homebrew core <https://github.com/Homebrew/homebrew-core>`__ database yet,
**MacDaily** is still available for ``brew``. Use the following commands to
add the `Tap <https://github.com/JarryShaw/homebrew-tap>`__ to your local
Homebrew installation (``$(BREW_PREFIX)/Homebrew/Library/Taps/``) and install
**MacDaily** through Homebrew.

.. code:: shell

$ brew tap jarryshaw/tap
$ brew install macdaily
# or simply, a one-liner
$ brew install jarryshaw/tap/macdaily

.. raw:: html

<h4>
<a name="pip">
Legacy approach through <code>pip</code> 🐍
</a>
</h4>

Just as many Python packages, MacDaily can be installed through
``pip`` using the following command, which will get you the latest
version from `PyPI <https://pypi.org>`__.

.. code:: shell

$ pip install macdaily

Or if you prefer the hard-core real-latest version and fetch from this GitHub
repository, then the script below should be used.

.. code:: shell

$ git clone https://github.com/JarryShaw/MacDaily.git
$ cd MacDaily
$ pip install -e .
# and to update at any time
$ git pull

Also, for best performance of MacDaily, the notable automation tool
|expect|_ is expected to be installed on your Mac. Recommended installation
approach is from `Homebrew <https://brew.sh>`__, as shown below.

.. code:: shell

$ brew install expect

.. |expect| replace:: ``expect``
.. _expect: https://core.tcl.tk/expect

Or if you prefer not to install |expect|_, MacDaily will use
|UNIX script utility|_ instead. Make sure that ``/usr/bin/script``
exists and ``/usr/bin`` is in your ``PATH`` environment variable.

.. |UNIX script utility| replace:: UNIX ``script`` utility
.. _UNIX script utility: https://en.wikipedia.org/wiki/Script_(Unix)

For the worst case, MacDaily adopts |ptyng|_ as an alternative. It is
a revised version of |Python pty module|_, intended to support
pseudo-terminal (PTY) on macOS with no further issue. To install ``ptyng``,
you may use the script below.

.. |ptyng| replace:: ``ptyng``
.. _ptyng: https://github.com/JarryShaw/ptyng
.. |Python pty module| replace:: Python ``pty`` module
.. _Python pty module: https://docs.python.org/3/library/pty.html

.. code:: shell

$ pip install macdaily[ptyng]
# or explicitly...
$ pip install macdaily ptyng

For **tree** format support in ``dependency`` command, you will need
|dictdumper|_, then implicitly you can use the following script to do so.

.. |dictdumper| replace:: ``DictDumper``
.. _dictdumper: https://github.com/JarryShaw/DictDumper

.. code:: shell

$ pip install macdaily[tree]
# or explicitly...
$ pip install macdaily dictdumper

And |configupdater|_ is required to support modification of the configuration
file in ``config`` command, since MacDaily intends to maintain the original
layout and information of original configuration file after modification. To
install, the sample script is as below.

.. |configupdater| replace:: ``ConfigUpdater``
.. _configupdater: https://configupdater.readthedocs.io

.. code:: shell

$ pip install macdaily[config]
# or explicitly...
$ pip install macdaily configupdater

To install all requirements for full support of MacDaily, you may simply run
the following script when installation.

.. code:: shell

$ pip install macdaily[all]
# or explicitly...
$ pip install macdaily configupdater dictdumper ptyng

Configuration
-------------

This part might be kind of garrulous, for some may not know what's
going on here. 😉

Since robust enough, MacDaily now supports configuration upon
user's own wish. One may set up log path, hard disk path, archive path
and many other things, other than the default settings.

NB
MacDaily now supports configuration commands,
see manual of |config|_ command for more information.

The configuration file should lie under ``~/.dailyrc``, which is hidden
from Finder by macOS. To review or edit it, you may use text editors
like ``vim`` and/or ``nano``, or other graphic editors, such as Sublime
Text and/or Visual Studio Code, or whatever you find favourable.

.. code:: ini

[Path]
# In this section, paths for log files are specified.
# Please, under any circumstances, make sure they are valid.
logdir = ~/Library/Logs/MacDaily ; path where logs will be stored
dskdir = /Volumes/Your Disk ; path where your hard disk lies
arcdir = ${dskdir}/Developers ; path where ancient logs archive

[Mode]
# In this section, flags for modes are configured.
# If you would like to disable the mode, set it to "false".
apm = true ; Atom plug-ins
app = true ; macOS Applications
brew = true ; Homebrew Formulae
cask = true ; Homebrew Casks
cleanup = true ; cleanup caches
gem = true ; Ruby gems
mas = true ; Mac App Store applications
npm = true ; Node.js modules
pip = true ; Python packages
system = true ; macOS software
tap = true ; Homebrew Taps

[Daemon]
# In this section, scheduled tasks are set up.
# You may append and/or remove the time intervals.
archive = false ; archive logs
bundle = false ; bundle packages
cleanup = false ; cleanup caches
config = false ; config MacDaily
dependency = false ; show dependencies
install = false ; install packages
launch = false ; launch daemons
logging = true ; log installed packages
postinstall = false ; postinstall packages
reinstall = false ; reinstall packages
uninstall = false ; uninstall packages
update = true ; update packages
schedule = ; scheduled timing (in 24 hours)
8:00 ; update & logging at 8:00
22:30-update ; update at 22:30
23:00-logging ; logging at 23:00

[Command]
# In this section, command options are picked.
# Do make sure these options are available for commands.
update = --all --quiet --show-log
logging = --all --quiet --show-log

[Miscellaneous]
# In this section, miscellaneous specifications are assigned.
# Please, under any circumstances, make sure all fields are valid.
askpass = ... ; SUDO_ASKPASS utility for Homebrew Casks
confirm = ... ; confirm utility for MacDaily
timeout = 1000 ; timeout limit for shell commands in seconds

Above is the default content of ``.dailyrc``, following the grammar of
``INI`` files. Lines and words after number sign (``#``) and semicolon
(``;``) are comments, whose main purpose is to help understanding the
contents of this file.

In section ``Path``, there are path names where logs and some other
things to be stored. In section ``Mode``, there are ten different
modes to indicate if they are *enabled* or *disabled*.

You may wish to set the ``dskdir`` -- *path where your hard disk lies*,
which allows MacDaily to archive your ancient logs and caches into
somewhere never bothers.

Please **NOTE** that, under all circumstances, of section ``Path``,
all values would better be a **valid path name**, possibly with ``~``
user-home expansion.

Besides, in section ``Daemon``, you can decide which command is
scheduled and when to run such command, with the format of
``HH:MM[-CMD]``. The ``CMD`` is optional, which will be ``any`` if
omits. And you may set up which command(s) will be registered as daemons
and run with schedule through booleans above. These boolean values
help MacDaily indicate which is to be launched when commands in
schedule omit. That is to say, when ``CMD`` omits in schedule, MacDaily
will register all commands that set ``true`` in the above boolean values.

Also, in section ``Option``, you may set up optional arguments for
the daemons above. Do please make sure these commands are **valid**. And
if omit, the help command ``--help`` will be given.

Last but no least, in section ``Miscellaneous``, you should **NEVER**
modify any contents under this section in order to keep MacDaily
working. However, you may set up this part with |config|_ command.

Usage Manual
------------

Start-Up
~~~~~~~~

Before we dive into the detailed usage of MacDaily, let's firstly
get our hands dirty with some simple commands.

**NOTE** -- all acronyms and aliases are left out for a quick and
clear view of MacDaily

1. How to use MacDaily?

.. code:: shell

# call from PATH
$ macdaily <command> [option ...]
# or call as Python module
$ python -m macdaily <command> [option ...]
# or call a certain command
$ md-${command} [option ...]

2. How to set up my disks and daemons interactively?

.. code:: shell

$ macdaily config --interactive

3. How to relaunch daemons after I manually modified ``~/.dailyrc``?

.. code:: shell

$ macdaily launch daemons

4. How to archive all ancient logs without running any commands?

.. code:: shell

$ macdaily archive --all

5. How to update all outdated packages?

.. code:: shell

$ macdaily update --all

6. How to update a certain package (eg: ``hello`` from Homebrew)?

.. code:: shell

$ macdaily update brew --package=hello

7. How to update without a certain package (eg: update all packages
except Python package ``ptyng``)?

.. code:: shell

$ macdaily update --all --pip='!ptyng'

8. How to uninstall a certain package along with its dependencies (eg:
``pytest`` from brewed CPython version 3.6)?

.. code:: shell

$ macdaily uninstall pip --brew --cpython --python=3.6 --package=pytest

9. How to reinstall all packages but do not cleanup caches?

.. code:: shell

$ macdaily reinstall --all --no-cleanup

10. How to postinstall packages whose name ranges between "start" and
"stop" alphabetically?

.. code:: shell

$ macdaily postinstall --all --start=start --end=stop

11. How to show dependency of a certain package as a tree (eg: ``gnupg``
from Homebrew) ?

.. code:: shell

$ macdaily dependency brew --tree --package=gnupg

12. How to log all applications on my Mac, a.k.a. ``*.app`` files?

.. code:: shell

$ macdaily logging app

13. How to dump a ``Macfile`` to keep track of all packages?

.. code:: shell

$ macdaily bundle dump

Commands
~~~~~~~~

MacDaily supports several different commands. Of all commands,
there are corresponding **aliases** for which to be reckoned as
valid.

+----------------+-----------------------------------------------+
| Command | Aliases |
+================+===============================================+
| |archive|_ | |
+----------------+-----------------------------------------------+
| |bundle|_ | |
+----------------+-----------------------------------------------+
| |cleanup|_ | ``clean`` |
+----------------+-----------------------------------------------+
| ``commands`` | |
+----------------+-----------------------------------------------+
| |config|_ | ``cfg`` |
+----------------+-----------------------------------------------+
| |dependency|_ | ``deps``, ``dp`` |
+----------------+-----------------------------------------------+
| |help|_ | ``doc``, ``man`` |
+----------------+-----------------------------------------------+
| |install|_ | ``i`` |
+----------------+-----------------------------------------------+
| |launch|_ | ``init`` |
+----------------+-----------------------------------------------+
| |logging|_ | ``log`` |
+----------------+-----------------------------------------------+
| |postinstall|_ | ``post``, ``ps``, |
+----------------+-----------------------------------------------+
| |reinstall|_ | ``re`` |
+----------------+-----------------------------------------------+
| |uninstall|_ | ``un``, ``unlink``, ``remove``, ``rm``, ``r`` |
+----------------+-----------------------------------------------+
| |update|_ | ``up``, ``upgrade`` |
+----------------+-----------------------------------------------+

For more information, MacDaily provides ``commands`` to help you find out the
expecting command.

.. code:: shell

$ macdaily commands
MacDaily available commands & corresponding subsidiaries:
archive
bundle dump, load
cleanup brew, cask, npm, pip
config
dependency brew, pip
install apm, brew ,cask, gem, mas, npm, pip, system
launch askpass, confirm, daemons
logging apm, app, brew, cask, gem, mas, npm, pip, tap
postinstall
reinstall brew, cask
uninstall brew, cask, pip
update apm, brew, cask, gem, mas, npm, pip, system

Generals
~~~~~~~~

.. code:: man

usage: macdaily [options] <command> ...

macOS Automated Package Manager

optional arguments:
-h, --help show this help message and exit
-V, --version show program's version number and exit

command selection:
MacDaily provides a friendly CLI workflow for the administrator of macOS
to manage and manipulate packages, see 'macdaily commands' for more
information

Commands for ``macdaily`` is shown as above and they are mandatory. For
more detailed usage information, please refer to manuals of corresponding
commands. For developers, internal details can be found in |miscellaneous|_
manual. And here is a brief catalogue for the manuals.

- `Archive Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/archive.rst>`__
- `Bundle Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/bundle.rst>`__

- `Dump Macfile <https://github.com/JarryShaw/MacDaily/tree/master/doc/bundle.rst#dump>`__
- `Load Macfile <https://github.com/JarryShaw/MacDaily/tree/master/doc/bundle.rst#load>`__

- `Cleanup Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst>`__

- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst#brew>`__
- `Node.js Modules <https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst#npm>`__
- `Python Packages <https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst#pip>`__

- `Config Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/config.rst>`__
- `Dependency Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/dependency.rst>`__

- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/dependency.rst#brew>`__
- `Python Packages <https://github.com/JarryShaw/MacDaily/tree/master/doc/dependency.rst#pip>`__

- `Help Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/help.rst>`__
- `Install Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst>`__

- `Atom Plug-Ins <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#apm>`__
- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#cask>`__
- `Ruby Gems <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#gem>`__
- `macOS Applications <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#mas>`__
- `Node.js Modules <https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst#npm>`__
- `Python Package <https://github.com/JarryShaw/MacDaily/tree/master/src/install.rst#pip>`__
- `System Software <https://github.com/JarryShaw/MacDaily/tree/master/src/install.rst#system>`__

- `Launch Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/launch.rst>`__

- `Askpass Helper Program <https://github.com/JarryShaw/MacDaily/tree/master/doc/launch.rst#askpass>`__
- `Confirm Helper Program <https://github.com/JarryShaw/MacDaily/tree/master/doc/launch.rst#confirm>`__
- `Daemons Helper Program <https://github.com/JarryShaw/MacDaily/tree/master/doc/launch.rst#daemons>`__

- `Logging Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst>`__

- `Atom Plug-Ins <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#apm>`__
- `Mac Applications <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#app>`__
- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#cask>`__
- `Ruby Gem <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#gem>`__
- `macOS Applications <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#mas>`__
- `Node.js Modules <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#npm>`__
- `Python Packages <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#pip>`__
- `Third-party Repositories <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#tap>`__

- `Postinstall Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/postinstall.rst>`__
- `Reinstall Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/reinstall.rst>`__

- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst#cask>`__

- `Uninstall Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/uninstall.rst>`__

- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/uninstall.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/uninstall.rst#cask>`__
- `Python Package <https://github.com/JarryShaw/MacDaily/tree/master/src/uninstall.rst#pip>`__

- `Update Command <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst>`__

- `Atom Plug-Ins <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#apm>`__
- `Homebrew Formulae <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#brew>`__
- `Caskroom Binaries <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#cask>`__
- `Ruby Gems <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#gem>`__
- `macOS Applications <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#mas>`__
- `Node.js Modules <https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst#npm>`__
- `Python Package <https://github.com/JarryShaw/MacDaily/tree/master/src/update.rst#pip>`__
- `System Software <https://github.com/JarryShaw/MacDaily/tree/master/src/update.rst#system>`__

- `Developer Manual <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst>`__

- `Project Structure <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#repo>`__
- `Command Classes <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#cmd>`__
- `Miscellaneous Utilities <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#util>`__

- `ANSI Sequences <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#color>`__
- `Print Utilities <https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#print>`__
- |script|_

.. |script| replace:: UNIX ``script``
.. _script: https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst#script

Troubleshooting
---------------

1. Where can I find the log files?
It depends. Since the path where logs go can be modified through
``~/.dailyrc``, it may vary as your settings. In default, you may
find them under ``~/Library/Logs/Scripts``. And with every command,
logs can be found in its corresponding folder. Logs are named after
its running time, in the fold with corresponding date as its name.

Note that, normally, you can only find today's logs in the folder,
since ``macdaily`` automatically archive ancient logs into
``${logdir}/arcfile`` folder. And every week, ``${logdir}/arcfile``
folder will be tape-archived into ``${logdir}/tarfile``. Then after a
month, and your hard disk available, they will be moved into
``/Volumes/Your Disk/Developers/archive.zip``.

2. What if my hard disk ain't plugged-in when running the scripts?
Then the archiving and removing procedure will **NOT** perform. In
case there might be some useful resources of yours.

3. Which directory should I set in the configuration file?
First and foremost, I highly recommend you **NOT** to modify the
paths in ``~/.dailyrc`` manually, **EXCEPT** your disk path
``dskdir``.

But if you insist to do so, then make sure they are **VALID**, possibly
with ``~`` user-home expansion and most importantly, they must be
**available** with permission granted.

TODO
----

- ✔️ support configuration
- ✔️ support command aliases
- ✔️ reconstruct archiving procedure
- ❌ support ``gem`` and ``npm`` in all commands
- ✔️ considering support more versions of Python
- ✔️ optimise ``KeyboardInterrupt`` handling procedure
- ❌ implement further specifications for package indication mini-language
- ✔️ review ``pip`` implementation and version indication
- ✔️ add ``--user`` for ``pip`` commands
- ❌ implement ``bundle`` and ``help`` commands

.. |archive| replace:: ``archive``
.. _archive: https://github.com/JarryShaw/MacDaily/tree/master/doc/archive.rst
.. |bundle| replace:: ``bundle``
.. _bundle: https://github.com/JarryShaw/MacDaily/tree/master/doc/bundle.rst
.. |cleanup| replace:: ``cleanup``
.. _cleanup: https://github.com/JarryShaw/MacDaily/tree/master/doc/cleanup.rst
.. |config| replace:: ``config``
.. _config: https://github.com/JarryShaw/MacDaily/tree/master/doc/config.rst
.. |dependency| replace:: ``dependency``
.. _dependency: https://github.com/JarryShaw/MacDaily/tree/master/doc/dependency.rst
.. |help| replace:: ``help``
.. _help: https://github.com/JarryShaw/MacDaily/tree/master/doc/help.rst
.. |install| replace:: ``install``
.. _install: https://github.com/JarryShaw/MacDaily/tree/master/doc/install.rst
.. |launch| replace:: ``launch``
.. _launch: https://github.com/JarryShaw/MacDaily/tree/master/doc/launch.rst
.. |logging| replace:: ``logging``
.. _logging: https://github.com/JarryShaw/MacDaily/tree/master/doc/logging.rst
.. |miscellaneous| replace:: ``miscellaneous``
.. _miscellaneous: https://github.com/JarryShaw/MacDaily/tree/master/doc/miscellaneous.rst
.. |postinstall| replace:: ``postinstall``
.. _postinstall: https://github.com/JarryShaw/MacDaily/tree/master/doc/postinstall.rst
.. |reinstall| replace:: ``reinstall``
.. _reinstall: https://github.com/JarryShaw/MacDaily/tree/master/doc/reinstall.rst
.. |uninstall| replace:: ``uninstall``
.. _uninstall: https://github.com/JarryShaw/MacDaily/tree/master/doc/uninstall.rst
.. |update| replace:: ``update``
.. _update: https://github.com/JarryShaw/MacDaily/tree/master/doc/update.rst

.. |download| image:: http://pepy.tech/badge/macdaily
:target: http://pepy.tech/count/macdaily
.. |version| image:: https://img.shields.io/pypi/v/macdaily.svg
:target: https://pypi.org/project/macdaily
.. |format| image:: https://img.shields.io/pypi/format/macdaily.svg
:target: https://pypi.org/project/macdaily
.. |status| image:: https://img.shields.io/pypi/status/macdaily.svg
:target: https://pypi.org/project/macdaily
.. |python| image:: https://img.shields.io/pypi/pyversions/macdaily.svg
:target: https://python.org
.. |implementation| image:: https://img.shields.io/pypi/implementation/macdaily.svg
:target: http://pypy.org


Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

macdaily-2018.12.8.post1.tar.gz (752.5 kB view details)

Uploaded Source

Built Distributions

macdaily-2018.12.8.post1-py3.7.egg (312.5 kB view details)

Uploaded Source

macdaily-2018.12.8.post1-py3.6.egg (312.1 kB view details)

Uploaded Source

macdaily-2018.12.8.post1-py3.5.egg (318.4 kB view details)

Uploaded Source

macdaily-2018.12.8.post1-py3.4.egg (318.8 kB view details)

Uploaded Source

macdaily-2018.12.8.post1-pp35-none-macosx_10_14_x86_64.whl (139.0 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

macdaily-2018.12.8.post1-cp37-none-macosx_10_14_x86_64.whl (138.3 kB view details)

Uploaded CPython 3.7 macOS 10.14+ x86-64

macdaily-2018.12.8.post1-cp36-none-macosx_10_14_x86_64.whl (138.3 kB view details)

Uploaded CPython 3.6 macOS 10.14+ x86-64

macdaily-2018.12.8.post1-cp35-none-macosx_10_14_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.5 macOS 10.14+ x86-64

macdaily-2018.12.8.post1-cp34-none-macosx_10_14_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.4 macOS 10.14+ x86-64

File details

Details for the file macdaily-2018.12.8.post1.tar.gz.

File metadata

  • Download URL: macdaily-2018.12.8.post1.tar.gz
  • Upload date:
  • Size: 752.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1.tar.gz
Algorithm Hash digest
SHA256 5924f192640f3ec4a101f373ba809f6ef48e3cdfed9ae115101bf4af4f787ff7
MD5 317b42d1527d4204b703c35d5c5d97ac
BLAKE2b-256 eda5523c5d997b89a3d187b9a53e5a0e4a618489af2b94316ee2676bb491930e

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-py3.7.egg.

File metadata

  • Download URL: macdaily-2018.12.8.post1-py3.7.egg
  • Upload date:
  • Size: 312.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-py3.7.egg
Algorithm Hash digest
SHA256 18ab83427a806ffaf4727d6a33809e05c09bbd4f1d02c788bd0a1c251de4a9d3
MD5 ed378ebea8e4b6b8e4fd1955f14802cb
BLAKE2b-256 5d539ad6f1f3c062aecf53cdccf8dcbae6ec0bb8b1ff946bea0d8ae9123aa486

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-py3.6.egg.

File metadata

  • Download URL: macdaily-2018.12.8.post1-py3.6.egg
  • Upload date:
  • Size: 312.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-py3.6.egg
Algorithm Hash digest
SHA256 fa79d3198f78e4b2af68fb5aecf8faf0c045cad38de500df8fbc052f3d4bd411
MD5 08148e63b3f844597703e557c5165a44
BLAKE2b-256 868b319f05d3b83acd7069476976bb1aaa4fd931d6fb89500c646834c5a415c3

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-py3.5.egg.

File metadata

  • Download URL: macdaily-2018.12.8.post1-py3.5.egg
  • Upload date:
  • Size: 318.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-py3.5.egg
Algorithm Hash digest
SHA256 6328171bd5a575f7d1ca48c89e4c6770f66c6913750ef115193cb5ca28a8510e
MD5 e71f35daf2df1405a601737862f4acf6
BLAKE2b-256 2e37a209b593e168e3ef5015e405d259d310bb4912a28c4a336ab15661f45bdf

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-py3.4.egg.

File metadata

  • Download URL: macdaily-2018.12.8.post1-py3.4.egg
  • Upload date:
  • Size: 318.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-py3.4.egg
Algorithm Hash digest
SHA256 85d21af3906574e1f68957a842a9eaf755f6f38585b804f81b0ce64452652f52
MD5 61bcb75abcc6b151c402114aafcf21a9
BLAKE2b-256 2f5d1266bd67acf4769708c8a000624824ee4f961ebba5ff3af65a78b4a8ae12

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-pp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: macdaily-2018.12.8.post1-pp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-pp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 40ac608d779be918c64e4623a1e5d45fa4be97541159f0133284d3f40d10584a
MD5 ca106e2b2261af942cc9acac9bcaa482
BLAKE2b-256 aa8c29c81639a130771c551e69e6a1040d3e9370528f195fb48439b0a8aa12f0

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-cp37-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: macdaily-2018.12.8.post1-cp37-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.7, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-cp37-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f94c6788b53e213ec9c36468c6cb563d387ce08a5ad10e0677a44a2b99c6a10f
MD5 0790f19de749415dc7cf15b6a849f152
BLAKE2b-256 d47ccfcd5cb083f4538ae958c88941c2d5dc13a68ed8a8bb2d12c8426e2a33d0

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-cp36-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: macdaily-2018.12.8.post1-cp36-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.6, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-cp36-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3e25dab3de5f8af3a8d68537c452f8098210f941a8202e8f858ce415e48d663d
MD5 e00080c290f956591fa9feb8ac7592f2
BLAKE2b-256 5ad9b27f7de0e7193c474d01e0413711583de8068a5ad49468471aad8d615516

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-cp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: macdaily-2018.12.8.post1-cp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.5, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-cp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9ac187b4d441b06e17c1521d271f0a5398a12b6f1cc242c08ec063aff4d3edfb
MD5 ae5efbe1a363489a76e7d5565113b227
BLAKE2b-256 5b0d79b6293212a4e2a203d6c695d3aa54f27a2f9dd76e8f115827e9cabd5b11

See more details on using hashes here.

File details

Details for the file macdaily-2018.12.8.post1-cp34-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: macdaily-2018.12.8.post1-cp34-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.4, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for macdaily-2018.12.8.post1-cp34-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7f2ed6d022ed5ee8f4669e2cda6682375088dba1ab978d9f7370f814cea56d06
MD5 85fc3fc72105e743007594e91b2a0ca9
BLAKE2b-256 7ce2993d195df5680b63db109b727ee08f3dd5b5ff40812439bd6509300c8606

See more details on using hashes here.

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