Metadata-Version: 2.4
Name: FF-Tokens
Version: 2.1.4
Summary: Generate JWT tokens from Free Fire access tokens
Author: NR CODEX
Author-email: nilaysingh.official@gmail.com
Keywords: free fire,jwt,access token
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pycryptodome
Requires-Dist: requests
Requires-Dist: httpx
Requires-Dist: protobuf
Requires-Dist: PyJWT
Requires-Dist: urllib3
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PythonLibrary-Tutorial
This is a tutorial project for publishing your own python library on PyPi.

## Requirments

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install all the requirements.
Just follow the commands below:

Upgrade Setuptoos:
```bash
python -m pip install --upgrade twine setuptools
```

Install Wheel:
```bash
pip install wheel
```

Make a build for your Library/Package:
```bash
python setup.py sdist bdist_wheel
```

Install twine:
```bash
pip install twine
```

Upload Your Library:
```bash
twine upload dist/*
```

If the above command fail to upload:
```bash
python -m twine upload dist/*
```


Congratulations your Library/Package is Published Successfully!! You might also got a link like this:
https://pypi.org/project/AreaOfFigs/


If you want to upload through Git repo,
Add this code after import statements
```python
here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
    long_description = "\n" + fh.read()
```
After add this code you have to add an Readme.md file and the just follow the commands above.

## Usage
Watch the full [tutorial](https://youtu.be/43VD7zH5iPY) on our youtube channel to know the complete setup. 
YT Channel: [Developer Gautam](https://www.youtube.com/c/DeveloperGautam)

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
