diff --git a/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/.ipynb_checkpoints/Untitled-checkpoint.ipynb new file mode 100644 index 0000000..2fd6442 --- /dev/null +++ b/.ipynb_checkpoints/Untitled-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/TikPy/__pycache__/__init__.cpython-36.pyc b/TikPy/__pycache__/__init__.cpython-36.pyc index d8c7cdd..9b26f78 100644 Binary files a/TikPy/__pycache__/__init__.cpython-36.pyc and b/TikPy/__pycache__/__init__.cpython-36.pyc differ diff --git a/Untitled.ipynb b/Untitled.ipynb new file mode 100644 index 0000000..f2328ac --- /dev/null +++ b/Untitled.ipynb @@ -0,0 +1,46 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting TikPy\n", + " Using cached https://files.pythonhosted.org/packages/f5/3d/4bc2ddada5e5c27f72092e6cc7a0d92ba639506a03923589bc0461182a1b/TikPy-0.1.tar.gz\n", + "Collecting json (from TikPy)\n", + "\u001b[31m ERROR: Could not find a version that satisfies the requirement json (from TikPy) (from versions: none)\u001b[0m\n", + "\u001b[31mERROR: No matching distribution found for json (from TikPy)\u001b[0m\n" + ] + } + ], + "source": [ + "!pip install TikPy" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/setup.py b/setup.py index 89e41bd..c443f6d 100644 --- a/setup.py +++ b/setup.py @@ -2,16 +2,15 @@ setup( name = 'TikPy', # How you named your package folder (MyLib) packages = ['TikPy'], # Chose the same as "name" - version = '0.1', # Start with a small number and increase it with every change you make + version = '0.2', # Start with a small number and increase it with every change you make license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository description = 'Tiktok API. ', # Give a short description about your library author = 'Vishwesh Kumar', # Type in your name author_email = 'vishwesh18119@iiitd.ac.in', # Type in your E-Mail url = 'https://github.com/precog-recr/TikPy', # Provide either the link to your github or to your website - download_url = 'https://github.com/precog-recr/TikPy/archive/v_01.tar.gz', # I explain this later on + download_url = 'https://github.com/precog-recr/TikPy/archive/V_02.tar.gz', # I explain this later on keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'], # Keywords that define your package best install_requires=[ # I get to this in a second - 'json', 'bs4', 'newspaper3k' ], diff --git a/tester.py b/tester.py deleted file mode 100644 index 0b97de6..0000000 --- a/tester.py +++ /dev/null @@ -1,3 +0,0 @@ -from TikPy import API - -print(API.get_user_info('https://www.tiktok.com/@avikdutta', from_video=False))