Skip to content

Commit 2c6bc54

Browse files
committed
initial commit
1 parent c59ebc6 commit 2c6bc54

6 files changed

+27
-2
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#python venv
2+
.venv/
3+
.vscode/
4+
5+
#pypi dist
6+
dist/
7+
reddify.egg-info/

CHANGELOG.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Change Log
2+
==================
3+
4+
0.0.1 (04/03/2020)
5+
------------------
6+
--- Updated everything

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 ibbeyo
3+
Copyright (c) 2019 Juan Rodriguez
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include README
2+
include LICENSE
3+
include requirements.txt

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# UspsApi
2-
Simple USPS API using request.
2+
Simple USPS API. No Authentication Required.
33

44
Sample Usage:
55

requirements.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
beautifulsoup4==4.9.3
2+
bs4==0.0.1
3+
certifi==2020.12.5
4+
chardet==4.0.0
5+
fake-useragent==0.1.11
6+
idna==2.10
7+
requests==2.25.1
8+
soupsieve==2.2.1
9+
urllib3==1.26.4

0 commit comments

Comments
 (0)