tn-weather-reporter

A Python package to get weather reports for any location.


License
MIT
Install
pip install tn-weather-reporter==0.1.1

Documentation

My very first library python

  1. Tutorial from
    https://www.youtube.com/watch?v=KTaLs494xgo&list=PLyb_C2HpOQSB3z_4WliKt56WyDgfXzzMz
    https://realpython.com/pypi-publish-python-package/
  1. Install requirements to build library
    pip3 install wheel
    pip3 install twine
  1. Build your packages
    python3 setup.py sdist bdist_wheel
  1. Check the distribution
    twine check dist/*
    ===> If passed ==> Now we goonna published to website
  1. TestPyPI: Test python package publishing before publishes on Python Package Index
    twine upload --repository-url https://test.pypi.org/legacy/ dist/*

- If you are using ubuntu, maybe you will get this error from commandline
....
    from keyring.util.escape import escape as escape_for_ini
ModuleNotFoundError: No module named 'keyring.util.escape'

    pip3 install --upgrade keyrings.alt 
  1. PyPI: Find, install and publish python packages with PPI
    twine upload --repository-url https://upload.pypi.org/legacy/ dist/*